<style>
/* CSS Reset */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    width: 100%;
    overflow-x: hidden;
}

html {
    margin: 0;
    padding: 0;
}


/* Navigation */

nav {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    padding: 0.8rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

nav .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    cursor: pointer;
}

nav .logo-img {
    height: 50px;
    width: 50px;
    object-fit: contain;
}

nav .logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

nav .version-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.2rem 0.6rem;
    border-radius: 15px;
    font-size: 0.65rem;
    margin-top: 0.2rem;
    font-weight: 500;
    width: fit-content;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
    font-size: 0.95rem;
    font-weight: 500;
}

nav a:hover {
    opacity: 0.8;
}


/* Hamburger Menu Toggle */

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 5px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}


/* Nav Menu Mobile */

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    nav .container {
        flex-wrap: wrap;
        padding: 0.8rem 1rem;
    }
    nav .logo {
        font-size: 1.2rem;
        gap: 0.6rem;
    }
    nav .logo-img {
        height: 45px;
        width: 45px;
    }
    nav ul {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
        flex-direction: column;
        gap: 0;
        list-style: none;
        padding: 1rem 0;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        z-index: 999;
    }
    nav ul.active {
        display: flex;
    }
    nav ul li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    nav ul li:last-child {
        border-bottom: none;
    }
    nav a {
        display: block;
        padding: 1rem 2rem;
        color: white;
        text-decoration: none;
        transition: background 0.3s;
        font-size: 0.95rem;
    }
    nav a:hover {
        background: rgba(255, 255, 255, 0.1);
        opacity: 1;
    }
}

@media (max-width: 600px) {
    nav .container {
        padding: 0.7rem 1rem;
    }
    nav .logo {
        font-size: 1rem;
        gap: 0.5rem;
    }
    nav .logo-img {
        height: 40px;
        width: 40px;
    }
    nav .logo-text {
        font-size: 0.9rem;
    }
    nav .version-badge {
        display: none;
    }
    nav ul {
        top: 65px;
    }
    nav a {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    nav .container {
        padding: 0.6rem 0.8rem;
    }
    nav .logo {
        font-size: 0.9rem;
        gap: 0.4rem;
    }
    nav .logo-img {
        height: 35px;
        width: 35px;
    }
    nav .logo-text {
        font-size: 0.8rem;
    }
}


/* Badge Promo */

.promo-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FF6B6B, #FFD93D);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: bold;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

.new-badge {
    display: inline-block;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-left: 0.5rem;
    animation: bounce 2s infinite;
}

@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes bounce {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}


/* Hero Section */

.hero {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    padding: 4rem 2rem 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    animation: slideDown 0.8s ease;
}

.hero .subtitle {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    opacity: 0.95;
    animation: slideDown 0.8s ease 0.2s both;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: slideUp 0.8s ease;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-highlight {
    background: rgba(255, 255, 255, 0.15);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: slideUp 0.8s ease 0.3s both;
}

.hero-highlight h3 {
    color: #FFD93D;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.hero-highlight p {
    margin-bottom: 0;
    font-size: 1rem;
}

.hero .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeIn 1s ease 0.5s both;
}

.btn {
    padding: 1rem 2.2rem;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: white;
    color: #25D366;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #25D366;
}

.btn-info {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
}

.btn-info:hover {
    background: rgba(255, 255, 255, 0.3);
}


/* Section Title */

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #25D366;
}


/* Features Section */

.features {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: #25D366;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.feature-card p {
    color: #666;
    line-height: 1.8;
}


/* Responsive */

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .feature-card {
        padding: 1.5rem;
    }
    .feature-icon {
        font-size: 2rem;
    }
    .feature-card h3 {
        font-size: 1rem;
    }
    .feature-card p {
        font-size: 0.9rem;
    }
}

@media (max-width: 600px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    .feature-card {
        padding: 1rem;
    }
    .feature-icon {
        font-size: 1.5rem;
    }
    .feature-card h3 {
        font-size: 0.9rem;
    }
    .feature-card p {
        font-size: 0.8rem;
    }
}


/* Key Features */

.key-features {
    padding: 4rem 2rem;
    background: white;
}

.key-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.key-feature {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.2);
}

.key-feature h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.key-feature p {
    margin-bottom: 0;
    font-size: 0.95rem;
    opacity: 0.95;
}


/* How It Works Section */

.how-it-works {
    padding: 4rem 2rem;
    background: white;
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: #25D366;
}

.steps-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding: 2rem 0;
}


/* Garis penghubung horizontal untuk desktop */

.steps-container::before {
    content: '';
    position: absolute;
    top: 67px;
    left: 90px;
    right: 90px;
    height: 3px;
    background: linear-gradient(90deg, #25D366 0%, #128C7E 50%, #25D366 100%);
    z-index: 0;
}

.steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    position: relative;
    z-index: 3;
    border: 5px solid white;
}

.step h3 {
    color: #25D366;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    font-weight: 700;
}

.step p {
    color: #666;
    line-height: 1.6;
    font-size: 0.9rem;
}


/* Responsive Steps */

@media (max-width: 1024px) {
    .steps-container::before {
        display: none;
    }
    .steps {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .how-it-works h2 {
        font-size: 2rem;
        margin-bottom: 3rem;
    }
    .steps-container::before {
        display: none;
    }
    .steps-container::after {
        display: none;
    }
    .steps {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-left: 30px;
    }
    .step-number {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    .step h3 {
        font-size: 1rem;
    }
    .step p {
        font-size: 0.85rem;
    }
}

@media (max-width: 600px) {
    .how-it-works h2 {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
    .steps-container::after {
        left: 28px;
    }
    .steps {
        margin-left: 20px;
        gap: 2rem;
    }
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    .step h3 {
        font-size: 0.9rem;
    }
    .step p {
        font-size: 0.8rem;
    }
}


/* Download Section */

.download-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.download-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.download-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.download-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.download-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.download-card p {
    margin-bottom: 1.5rem;
    opacity: 0.95;
    font-size: 0.95rem;
}

.download-card .btn {
    width: 86%;
}


/* Update untuk Download Section */

.download-section h3 {
    color: white;
    font-weight: 700;
    text-align: center;
}

.download-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.download-section ul li {
    padding: 0.5rem 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.download-section ul li:last-child {
    border-bottom: none;
}

.download-section ul li:before {
    content: "✓ ";
    color: #FFD93D;
    font-weight: bold;
    margin-right: 0.5rem;
}

.download-card {
    display: flex;
    flex-direction: column;
}

.download-card .btn {
    margin-top: auto;
}

.file-info {
    background: rgba(0, 0, 0, 0.2);
    padding: 1rem;
    border-radius: 5px;
    font-size: 0.85rem;
    margin-top: 1rem;
    color: #FFD93D;
}


/* Bonus Section */

.bonus-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #FF6B6B, #FFD93D);
    color: white;
}

.bonus-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.bonus-content {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.1);
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.bonus-content p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.bonus-list {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
}

.bonus-list li {
    padding: 0.7rem 0;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.bonus-list li:last-child {
    border-bottom: none;
}

.bonus-list li:before {
    content: "🎁 ";
    margin-right: 0.5rem;
}


/* FAQ Section - PENTING! */

.faq {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #25D366;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 1.5rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.faq-question {
    width: 100%;
    background: #f8f9fa;
    padding: 1.5rem;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1rem;
    color: #06943b;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
    outline: none;
}

.faq-question:hover {
    background: #eee;
}

.faq-question.active {
    background: #e8f5e9;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: #25D366;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-toggle.active {
    transform: rotate(45deg);
    color: #e65100;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: white;
}


/* PERBAIKAN - Naikkan max-height untuk konten yang panjang */

.faq-answer.show {
    max-height: 1500px;
}

.faq-answer p {
    padding: 1.5rem;
    color: #666;
    margin: 0;
    line-height: 1.8;
    word-wrap: break-word;
    white-space: normal;
}


/* Responsive FAQ */

@media (max-width: 768px) {
    .faq h2 {
        font-size: 2rem;
    }
    .faq-question {
        font-size: 0.95rem;
        padding: 1.2rem;
        flex-wrap: wrap;
    }
    .faq-toggle {
        font-size: 1.3rem;
        margin-left: 0.8rem;
    }
    .faq-answer p {
        padding: 1.2rem;
        font-size: 0.95rem;
    }
    .faq-answer.show {
        max-height: 2000px;
    }
}

@media (max-width: 480px) {
    .faq-container {
        max-width: 100%;
    }
    .faq-question {
        font-size: 0.9rem;
        padding: 1rem;
    }
    .faq-question span {
        display: block;
        width: 100%;
    }
    .faq-toggle {
        display: inline-block;
        margin-left: 0.5rem;
        margin-top: 0.5rem;
    }
    .faq-answer p {
        padding: 1rem;
        font-size: 0.9rem;
        line-height: 1.6;
    }
    .faq-answer.show {
        max-height: 2500px;
    }
}


/* CTA Section */

.cta-section {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}


/* Footer */

footer {
    background: #1a1a1a;
    color: white;
    padding: 2rem;
    text-align: center;
}

footer .footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: #25D366;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #25D366;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 2rem;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}


/* Animations */

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


/* Responsive */

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    .hero .subtitle {
        font-size: 1.2rem;
    }
    nav ul {
        gap: 1rem;
        font-size: 0.9rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    .faq-question {
        font-size: 0.9rem;
    }
}


/* Timeline Section */

.timeline-section {
    padding: 4rem 2rem;
    background: white;
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #25D366 0%, #128C7E 100%);
}

.timeline-item {
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: 0;
    margin-right: 52%;
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 52%;
    margin-right: 0;
    text-align: left;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border: 4px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 0 0 4px #f8f9fa, 0 5px 15px rgba(37, 211, 102, 0.3);
    z-index: 10;
}

.timeline-content {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #25D366;
    transition: all 0.3s ease;
}

.timeline-item:nth-child(even) .timeline-content {
    border-left: none;
    border-right: 4px solid #25D366;
}

.timeline-content:hover {
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.15);
    transform: translateY(-5px);
}

.timeline-date {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    align-items: center;
    justify-content: flex-start;
}

.timeline-item:nth-child(odd) .timeline-date {
    justify-content: flex-end;
}

.badge-date {
    background: #e8f5e9;
    color: #25D366;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.badge-status {
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
}

.badge-released {
    background: #c8e6c9;
    color: #2e7d32;
}

.badge-planned {
    background: #fff3e0;
    color: #e65100;
}

.timeline-content h3 {
    color: #25D366;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.timeline-content>p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.timeline-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.timeline-features li {
    color: #666;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(37, 211, 102, 0.1);
}

.timeline-features li:last-child {
    border-bottom: none;
}

.timeline-features li:before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #25D366;
    border-radius: 50%;
    margin-right: 0.7rem;
}


/* Responsive Timeline */

@media (max-width: 768px) {
    .timeline::before {
        left: 20px;
    }
    .timeline-marker {
        left: 20px;
        width: 60px;
        height: 60px;
        font-size: 0.9rem;
    }
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 100px;
        margin-right: 0;
        text-align: left;
    }
    .timeline-item:nth-child(odd) .timeline-content {
        border-left: 4px solid #25D366;
        border-right: none;
    }
    .timeline-item:nth-child(even) .timeline-content {
        border-left: 4px solid #25D366;
        border-right: none;
    }
    .timeline-date {
        justify-content: flex-start !important;
        flex-direction: column;
        align-items: flex-start !important;
    }
    .timeline-content h3 {
        font-size: 1.1rem;
    }
}

</style>