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

:root {
    --primary-green: #00FF88;
    --dark-bg: #1c1d1c;
    --card-bg: #323738;
    --light-bg: #3d4546;
    --border-color: #4a5455;
    --text-white: #ffffff;
    --text-gray: #d4d4d4;
    --text-muted: #a0a0a0;
    --accent-blue: #0ea5e9;
    --orange: #ffa500;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--dark-bg);
    color: var(--text-gray);
    line-height: 1.8;
    overflow-x: hidden;
}

/* Header */
header {
    position: relative;
    position: sticky;
    top: 0;
    z-index: 100;
    background: linear-gradient(180deg, rgba(28, 29, 28, 0.95) 0%, rgba(28, 29, 28, 0.85) 100%);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    padding: 0.8rem 0;
}

.header-content {
    max-width: 100%;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    height: 50px;
    flex-shrink: 0;
}

.logo img {
    height: 100%;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    flex: 1;
}

.nav-menu a {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-menu a:hover {
    color: var(--primary-green);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--primary-green);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 101;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    transform: scale(1.1);
}

/* Mobile Menu */
.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(28, 29, 28, 0.98) 0%, rgba(50, 55, 56, 0.95) 100%);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    z-index: 100;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    flex-direction: column;
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav a {
    padding: 1rem 2rem;
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid rgba(74, 84, 85, 0.3);
    transition: all 0.3s ease;
}

.mobile-nav a:hover {
    color: var(--primary-green);
    background: rgba(0, 255, 136, 0.05);
    padding-left: 2.5rem;
}

.header-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
    align-items: center;
    flex-direction: row;
}

.btn {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-width: auto;
}

.btn-primary {
    background: linear-gradient(90deg, #00a8cc 0%, #00ff88 100%);
    color: white;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
}

.btn-secondary {
    background: linear-gradient(90deg, #00a8cc 0%, #00ff88 100%);
    color: white;
    border: none;
}

.btn-secondary:hover {
    transform: translateY(-2px);
}

/* Header buttons styling */
.header-buttons .btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    background: linear-gradient(90deg, #00a8cc 0%, #00ff88 100%);
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    text-align: left;
    gap: 8px;
}

.header-buttons .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.3s ease;
    z-index: 0;
}

.header-buttons .btn:hover::before {
    left: 100%;
}

.header-buttons .btn:hover {
    transform: translateY(-2px);
}

.header-buttons .btn-primary,
.header-buttons .btn-secondary {
    background: linear-gradient(90deg, #00a8cc 0%, #00ff88 100%);
    color: white;
    border: none;
}

/* CTA buttons styling */
.cta-buttons .btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    background: linear-gradient(90deg, #00a8cc 0%, #00ff88 100%);
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    text-align: left;
    gap: 8px;
}

.cta-buttons .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.3s ease;
    z-index: 0;
}

.cta-buttons .btn:hover::before {
    left: 100%;
}

.cta-buttons .btn:hover {
    transform: translateY(-2px);
}

.cta-buttons .btn-primary,
.cta-buttons .btn-secondary {
    background: linear-gradient(90deg, #00a8cc 0%, #00ff88 100%);
    color: white;
    border: none;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.08) 0%, rgba(10, 165, 233, 0.08) 100%);
    padding: 6rem 2rem;
    border-bottom: 1px solid var(--border-color);
    text-align: center;
}

.hero-container {
    max-width: 900px;
    margin: 0 auto;
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: var(--text-white);
    line-height: 1.2;
}

h1 span {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 480px;
    margin: 0 auto 3rem;
    width: 100%;
    padding: 0 2rem;
}

.hero-cta .btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    background: linear-gradient(90deg, #00a8cc 0%, #00ff88 100%);
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    text-align: left;
    width: 100%;
    box-sizing: border-box;
}

.hero-cta .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.3s ease;
    z-index: 0;
}

.hero-cta .btn:hover::before {
    left: 100%;
}

.hero-cta .btn:active {
    transform: scale(0.98);
}

.hero-cta .btn-primary,
.hero-cta .btn-secondary {
    background: linear-gradient(90deg, #00a8cc 0%, #00ff88 100%);
    color: white;
    border: none;
}

.hero-cta .btn-primary:hover,
.hero-cta .btn-secondary:hover {
    transform: translateY(-2px);
}

.hero-cta-content {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.hero-cta-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-cta-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero-cta-text {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.hero-cta-arrow {
    position: relative;
    z-index: 1;
    font-size: 20px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 8px;
}

.hero-cta .btn:hover .hero-cta-arrow {
    transform: translateX(4px);
}

.hero-image {
    width: 100%;
    max-width: 900px;
    border-radius: 16px;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Section */
.full-width-section {
    width: 100%;
    padding: 4rem 2rem;
    border-bottom: 1px solid var(--border-color);
}

.full-width-section:nth-child(odd) {
    background: linear-gradient(90deg, rgba(0, 255, 136, 0.02) 0%, transparent 100%);
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-container.reverse {
    direction: rtl;
}

.section-container.reverse > * {
    direction: ltr;
}

.section-content {
    padding: 0;
}

.section-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.section-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-white);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.section-content p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-gray);
}

.section-content strong {
    color: var(--primary-green);
    font-weight: 600;
}

.section-content a {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 500;
}

.section-content a:hover {
    color: var(--primary-green);
    text-decoration: underline;
}

.section-content ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.section-content li {
    margin-bottom: 0.8rem;
    color: var(--text-gray);
}

.section-content li strong {
    color: var(--primary-green);
}

.highlight-box {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.05) 0%, rgba(10, 165, 233, 0.05) 100%);
    border-left: 4px solid var(--primary-green);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.highlight-box strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-green);
}

.info-box {
    background: linear-gradient(135deg, rgba(10, 165, 233, 0.05) 0%, rgba(167, 139, 250, 0.05) 100%);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.info-box-title {
    color: var(--accent-blue);
    font-weight: 700;
    margin-bottom: 1rem;
}

.info-box ul {
    padding-left: 0;
    list-style: none;
}

.info-box li {
    margin-bottom: 0.8rem;
    color: var(--text-gray);
}

/* Bonus Section */
.bonus-section {
    background: #1c1d1c;
    padding: 1rem;
    margin: 2rem auto;
    max-width: 480px;
    width: 100%;
}

.image-container {
    width: 100%;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
}

.image-container img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    object-fit: cover;
}

.buttons-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.action-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    background: linear-gradient(90deg, #00a8cc 0%, #00ff88 100%);
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    text-align: left;
    width: 100%;
    box-sizing: border-box;
}

.action-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.3s ease;
    z-index: 0;
}

.action-button:hover::before {
    left: 100%;
}

.action-button:active {
    transform: scale(0.98);
}

.button-content {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.button-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.button-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.button-text {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.arrow-icon {
    position: relative;
    z-index: 1;
    font-size: 20px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 8px;
}

.action-button:hover .arrow-icon {
    transform: translateX(4px);
}

/* FAQ */
.faq-item {
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.2rem;
    background: transparent;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--text-white);
    user-select: none;
}

.faq-question:hover {
    background: transparent;
}

.faq-toggle {
    color: var(--primary-green);
    font-size: 1rem;
    transition: none;
}

.faq-item.active .faq-toggle {
    transform: none;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: none;
    padding: 0;
}

.faq-item.active .faq-answer {
    max-height: 600px;
    padding: 1.2rem;
    background: transparent;
}

.faq-answer p {
    color: var(--text-gray);
    margin: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, rgba(10, 165, 233, 0.1) 100%);
    border: 1px solid var(--primary-green);
    border-radius: 12px;
    padding: 2.5rem;
    margin: 3rem 0;
    text-align: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-size: 1.8rem;
    margin-top: 0;
}

.cta-section p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
footer {
    background: rgba(20, 20, 20, 0.5);
    border-top: 1px solid var(--border-color);
    padding: 3rem 2rem 1rem;
    margin-top: 4rem;
}

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

.footer-section h4 {
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-section p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-section a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-green);
}

.footer-bottom {
    padding: 2rem;
    text-align: center;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.85rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .header-content {
        padding: 0 1.5rem;
        gap: 1.5rem;
    }

    h1 {
        font-size: 2.8rem;
    }

    h2 {
        font-size: 2rem;
    }

    .section-container {
        gap: 2.5rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 768px) {
    nav {
        display: none;
    }

    .header-content {
        padding: 0 1rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo {
        height: 40px;
        margin-right: auto;
    }

    /* Show Mobile Menu Button */
    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        order: 3;
        margin-left: 0.8rem;
    }

    /* Hide Desktop Menu */
    .nav-menu {
        display: none;
    }

    .header-buttons {
        order: 2;
        display: flex;
        gap: 0.6rem;
        align-items: center;
    }

    .header-buttons .btn {
        font-size: 11px;
        padding: 6px 10px;
        gap: 6px;
        border-radius: 6px;
        display: flex;
        align-items: center;
        width: auto;
        height: auto;
        transition: all 0.3s ease;
    }

    .header-buttons .btn-primary,
    .header-buttons .btn-secondary {
        background: linear-gradient(90deg, #00a8cc 0%, #00ff88 100%);
        color: white;
        border: none;
    }

    .header-buttons .btn i {
        font-size: 12px;
    }

    .header-buttons .btn span {
        display: inline;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }

    .cta-buttons .btn {
        width: 100%;
        padding: 10px 12px;
        font-size: 11px;
    }

    .cta-buttons .btn i {
        font-size: 14px;
    }

    h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    h2 {
        font-size: 1.6rem;
        margin-bottom: 1.2rem;
    }

    h3 {
        font-size: 1.1rem;
        margin-top: 1.5rem;
    }

    .hero-section {
        padding: 3rem 1rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-cta {
        flex-direction: row;
        gap: 8px;
        max-width: 100%;
        padding: 0 1rem;
        margin: 0 auto 2rem;
    }

    .hero-cta .btn {
        padding: 10px 8px;
        font-size: 11px;
    }

    .hero-cta-icon {
        width: 24px;
        height: 24px;
    }

    .hero-cta-text {
        font-size: 11px;
    }

    .hero-cta-arrow {
        font-size: 16px;
        margin-left: 4px;
    }

    .full-width-section {
        padding: 2.5rem 1rem;
    }

    .section-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-container.reverse {
        direction: ltr;
    }

    .section-content p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1.2rem;
    }

    .section-content ul {
        margin: 1rem 0;
        padding-left: 1.5rem;
    }

    .section-content li {
        margin-bottom: 0.6rem;
        font-size: 0.95rem;
    }

    .bonus-section {
        padding: 1rem 0.5rem;
        margin: 2rem auto;
        max-width: 100%;
    }

    .buttons-section {
        max-width: 100%;
    }

    .action-button {
        padding: 12px 14px;
        font-size: 11px;
        border-radius: 6px;
    }

    .button-icon {
        width: 28px;
        height: 28px;
    }

    .button-text {
        font-size: 11px;
    }

    .arrow-icon {
        font-size: 18px;
    }

    .highlight-box {
        padding: 1.2rem;
        margin: 1.5rem 0;
    }

    .info-box {
        padding: 1.2rem;
        margin: 1.5rem 0;
    }

    .faq-question {
        padding: 1rem;
        font-size: 0.95rem;
    }

    .faq-answer {
        max-height: 400px !important;
    }

    .faq-answer p {
        font-size: 0.9rem;
    }

    .cta-section {
        padding: 1.5rem;
        margin: 2rem 0;
        border-radius: 10px;
    }

    .cta-section h3 {
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
    }

    .cta-section p {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    footer {
        padding: 2rem 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .footer-section h4 {
        font-size: 1rem;
    }

    .footer-bottom {
        padding: 1.5rem 1rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 14px;
    }

    .header-content {
        padding: 0 0.8rem;
    }

    .logo {
        height: 35px;
    }

    .header-buttons .btn {
        padding: 5px 8px;
        font-size: 9px;
        gap: 4px;
        border-radius: 5px;
        width: auto;
        height: auto;
    }

    .header-buttons .btn i {
        font-size: 10px;
    }

    .header-buttons .btn span {
        display: inline;
    }

    h1 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        line-height: 1.3;
    }

    h2 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    h3 {
        font-size: 1rem;
        margin-top: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .hero-section {
        padding: 2rem 0.8rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .hero-cta {
        flex-direction: row;
        gap: 6px;
        max-width: 100%;
        padding: 0 0.8rem;
        margin: 0 auto 1.5rem;
    }

    .hero-cta .btn {
        padding: 8px 6px;
        font-size: 10px;
    }

    .hero-cta-icon {
        width: 20px;
        height: 20px;
    }

    .hero-cta-text {
        font-size: 10px;
    }

    .hero-cta-arrow {
        font-size: 14px;
        margin-left: 2px;
    }

    .full-width-section {
        padding: 2rem 0.8rem;
    }

    .section-content p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
        line-height: 1.6;
    }

    .section-content ul {
        margin: 1rem 0;
        padding-left: 1.2rem;
    }

    .section-content li {
        margin-bottom: 0.5rem;
        font-size: 0.9rem;
    }

    .bonus-section {
        padding: 0.8rem;
        margin: 1.5rem auto;
        max-width: 100%;
    }

    .buttons-section {
        gap: 8px;
        max-width: 100%;
    }

    .action-button {
        padding: 10px 10px;
        font-size: 10px;
        gap: 6px;
    }

    .button-icon {
        width: 24px;
        height: 24px;
    }

    .button-text {
        font-size: 10px;
    }

    .arrow-icon {
        font-size: 16px;
        margin-left: 4px;
    }

    .highlight-box {
        padding: 1rem;
        margin: 1rem 0;
    }

    .highlight-box strong {
        margin-bottom: 0.3rem;
    }

    .info-box {
        padding: 1rem;
        margin: 1rem 0;
    }

    .info-box-title {
        font-size: 0.9rem;
    }

    .info-box li {
        font-size: 0.85rem;
        margin-bottom: 0.4rem;
    }

    .faq-question {
        padding: 0.8rem;
        font-size: 0.9rem;
        gap: 1rem;
    }

    .faq-toggle {
        font-size: 0.9rem;
        flex-shrink: 0;
    }

    .faq-answer {
        max-height: 300px !important;
        padding: 0.8rem !important;
    }

    .faq-answer p {
        font-size: 0.85rem;
    }

    .cta-section {
        padding: 1.2rem 0.8rem;
        margin: 1.5rem 0;
        border-radius: 8px;
    }

    .cta-section h3 {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }

    .cta-section p {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    .cta-buttons {
        gap: 0.6rem;
        flex-direction: column;
    }

    .cta-buttons .btn {
        padding: 8px 10px;
        font-size: 10px;
        width: 100%;
    }

    .cta-buttons .btn i {
        font-size: 12px;
    }

    footer {
        padding: 1.5rem 0.8rem;
        margin-top: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        margin-bottom: 1.2rem;
    }

    .footer-section h4 {
        font-size: 0.95rem;
        margin-bottom: 0.6rem;
    }

    .footer-section p,
    .footer-section a {
        font-size: 0.8rem;
        margin-bottom: 0.3rem;
    }

    .footer-bottom {
        padding: 1rem 0.8rem;
        font-size: 0.75rem;
    }

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

/* ==========================================================================
   Blog Styles
   ========================================================================== */

/* Blog Hero Section */
.blog-hero {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.08) 0%, rgba(10, 165, 233, 0.08) 100%);
    padding: 5rem 2rem 4rem;
    border-bottom: 1px solid var(--border-color);
    text-align: center;
}

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

.blog-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.blog-hero p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Blog Grid */
.blog-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

/* Blog Card */
.blog-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-green);
    box-shadow: 0 10px 20px rgba(0, 255, 136, 0.1);
}

.blog-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.8rem;
}

.blog-card-meta span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.blog-card-meta i {
    color: var(--primary-green);
}

.blog-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.8rem;
    line-height: 1.4;
    transition: color 0.3s ease;
    text-decoration: none;
}

.blog-card:hover .blog-card-title {
    color: var(--primary-green);
}

.blog-card-excerpt {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.blog-card-link {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.blog-card-link:hover {
    gap: 0.8rem;
}

/* Single Article Layout */
.article-section {
    padding: 4rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.article-header {
    margin-bottom: 2rem;
    text-align: center;
}

.article-category {
    background: rgba(0, 255, 136, 0.1);
    color: var(--primary-green);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.article-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.article-meta i {
    color: var(--primary-green);
}

.article-banner {
    width: 100%;
    max-height: 480px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 3rem;
    border: 1px solid var(--border-color);
}

.article-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
}

.article-content p {
    margin-bottom: 1.5rem;
}

.article-content h2 {
    font-size: 2rem;
    color: var(--primary-green);
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
    font-weight: 800;
}

.article-content h3 {
    font-size: 1.4rem;
    color: var(--text-white);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.article-content ul, .article-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.article-content li {
    margin-bottom: 0.6rem;
}

.article-content li strong {
    color: var(--primary-green);
}

.article-content blockquote {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.05) 0%, rgba(10, 165, 233, 0.05) 100%);
    border-left: 4px solid var(--primary-green);
    padding: 1.5rem;
    border-radius: 0 8px 8px 0;
    margin: 2rem 0;
    font-style: italic;
}

.article-cta-box {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, rgba(10, 165, 233, 0.1) 100%);
    border: 1px solid var(--primary-green);
    border-radius: 12px;
    padding: 2rem;
    margin: 3rem 0;
    text-align: center;
}

.article-cta-box h4 {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-weight: 700;
}

.article-cta-box p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

/* Responsive adjustment for blog & article */
@media (max-width: 768px) {
    .blog-hero h1 {
        font-size: 2.2rem;
    }
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .article-title {
        font-size: 2rem;
    }
    .article-meta {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.8rem;
        font-size: 0.85rem;
    }
    .article-section {
        padding: 2rem 1rem;
    }
    .article-content h2 {
        font-size: 1.6rem;
        margin-top: 2rem;
    }
}
