/* ===================================
   RESET & BASE STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 40px;
}

section[id] {
    scroll-margin-top: 40px;
}

div {
    word-break: break-word;
    overflow-wrap: break-word;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #0E1320;
    color: #F4F6FA;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

option {
    color: black;
    background-color: white;
}

/* ===================================
   CONTAINER & LAYOUT
   =================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
}

/* ===================================
   HEADER & NAVIGATION
   =================================== */
.main-header {
    position: sticky;
    top: 0;
    background: rgba(14, 19, 32, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(182, 245, 0, 0.1);
    z-index: 1000;
    padding: 15px 0;
}

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

.logo {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, #B6F500 0%, #5CE1E6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.main-nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #B6F500;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #B6F500;
}

.nav-link:hover::after {
    width: 100%;
}

.cta-nav {
    background: linear-gradient(135deg, #B6F500 0%, #5CE1E6 100%);
    color: #0E1320;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
}

.cta-nav::after {
    display: none;
}

.cta-nav:hover {
    color: #0E1320;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(182, 245, 0, 0.4);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
}

.menu-btn {
    background: none;
    border: none;
    width: 30px;
    height: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.menu-btn span {
    width: 100%;
    height: 3px;
    background: #B6F500;
    border-radius: 2px;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(14, 19, 32, 0.98);
        flex-direction: column;
        gap: 15px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }

    .main-nav.active {
        max-height: 400px;
        border-bottom: 1px solid rgba(182, 245, 0, 0.2);
    }
}

/* ===================================
   HERO SECTION
   =================================== */
.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(14, 19, 32, 0.9) 0%, rgba(14, 19, 32, 0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1s ease;
}

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

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #B6F500 0%, #5CE1E6 50%, #FF5C5C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    color: #F4F6FA;
    margin-bottom: 35px;
    line-height: 1.6;
}

.hero-cta {
    display: inline-block;
    background: linear-gradient(135deg, #B6F500 0%, #5CE1E6 100%);
    color: #0E1320;
    padding: 18px 45px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(182, 245, 0, 0.3);
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(182, 245, 0, 0.5);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-cta {
        font-size: 16px;
        padding: 16px 35px;
    }
}

/* ===================================
   SECTION STYLES
   =================================== */
section {
    padding: 100px 0;
    width: 100%;
    overflow-x: hidden;
}

.section-header {
    margin-bottom: 50px;
}

.section-header.centered {
    text-align: center;
}

.section-tag {
    display: inline-block;
    color: #B6F500;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.3;
    color: #F4F6FA;
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 30px;
    }
    
    .main-nav.active {
        padding: 20px;
    }
}

/* ===================================
   ABOUT SECTION
   =================================== */
.about-section {
    background: linear-gradient(180deg, #0E1320 0%, #161d30 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #d1d5db;
    margin-bottom: 20px;
}

.about-visual {
    position: relative;
    height: 400px;
}

.visual-card {
    position: absolute;
    width: 200px;
    height: 150px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(182, 245, 0, 0.2) 0%, rgba(92, 225, 230, 0.2) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(182, 245, 0, 0.3);
    animation: float 6s ease-in-out infinite;
    background-size: cover;
    background-position: center;
}

.visual-card.card-1 {
    top: 0;
    left: 0;
    animation-delay: 0s;
}

.visual-card.card-2 {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    animation-delay: 2s;
}

.visual-card.card-3 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-visual {
        height: 300px;
    }
}

/* ===================================
   SERVICES SECTION
   =================================== */
.services-section {
    background: #0E1320;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: linear-gradient(135deg, rgba(22, 29, 48, 0.8) 0%, rgba(14, 19, 32, 0.9) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(182, 245, 0, 0.2);
    border-radius: 25px;
    padding: 40px 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(182, 245, 0, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: #B6F500;
    box-shadow: 0 20px 60px rgba(182, 245, 0, 0.2);
}

.service-card.featured {
    border-color: #FF5C5C;
    background: linear-gradient(135deg, rgba(255, 92, 92, 0.1) 0%, rgba(22, 29, 48, 0.8) 100%);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #FF5C5C;
    color: #0E1320;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.service-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 25px;
    border-radius: 15px;
    background: linear-gradient(135deg, #B6F500 0%, #5CE1E6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
}

.service-card.featured .service-icon {
    background: linear-gradient(135deg, #FF5C5C 0%, #B6F500 100%);
}

.service-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #F4F6FA;
}

.service-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #d1d5db;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin-top: 25px;
}

.service-features li {
    font-size: 14px;
    color: #B6F500;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    font-weight: 700;
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

/* ===================================
   BENEFITS SECTION
   =================================== */
.benefits-section {
    background: linear-gradient(180deg, #161d30 0%, #0E1320 100%);
}

.benefits-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.benefits-visual {
    position: relative;
}

.benefit-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
    border: 2px solid rgba(182, 245, 0, 0.3);
}

.benefits-content {
    width: 100%;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.benefit-icon {
    min-width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(135deg, #B6F500 0%, #5CE1E6 100%);
    color: #0E1320;
    border-radius: 15px;
}

.benefit-text h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #F4F6FA;
}

.benefit-text p {
    font-size: 15px;
    line-height: 1.7;
    color: #d1d5db;
}

@media (max-width: 992px) {
    .benefits-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .benefit-image {
        height: 300px;
    }
}

/* ===================================
   INFOGRAPHIC / PROCESS SECTION
   =================================== */
.infographic-section {
    background: #0E1320;
}

.process-timeline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 60px;
    position: relative;
    width: 100%;
    max-width: 100%;
}

.timeline-item {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
}

.timeline-marker {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #B6F500 0%, #5CE1E6 100%);
    border-radius: 50%;
    border: 5px solid #0E1320;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
}

.timeline-item:hover .timeline-marker {
    transform: scale(1.15);
    box-shadow: 0 10px 30px rgba(182, 245, 0, 0.4);
}

.timeline-content h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #F4F6FA;
}

.timeline-content p {
    font-size: 14px;
    color: #d1d5db;
    line-height: 1.6;
}

.timeline-connector {
    flex: 0 0 60px;
    height: 3px;
    background: linear-gradient(90deg, #B6F500 0%, #5CE1E6 100%);
    position: relative;
    top: -50px;
}

@media (max-width: 992px) {
    .process-timeline {
        flex-direction: column;
        gap: 30px;
    }

    .timeline-connector {
        width: 3px;
        height: 60px;
        flex: none;
        top: 0;
        background: linear-gradient(180deg, #B6F500 0%, #5CE1E6 100%);
    }
    
    .timeline-content {
        padding: 0 10px;
    }
}

/* ===================================
   FAQ SECTION
   =================================== */
.faq-section {
    background: linear-gradient(180deg, #161d30 0%, #0E1320 100%);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: rgba(22, 29, 48, 0.6);
    border: 1px solid rgba(182, 245, 0, 0.2);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #B6F500;
}

.faq-checkbox {
    display: none;
}

.faq-checkbox:checked ~ .faq-answer {
    max-height: 500px;
    padding: 0 25px 25px;
    opacity: 1;
}

.faq-checkbox:checked ~ .faq-question .faq-icon::before {
    content: '−';
}

.faq-checkbox:checked ~ .faq-question {
    color: #5CE1E6;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 17px;
    font-weight: 600;
    color: #F4F6FA;
    text-align: left;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #B6F500;
}

.faq-icon {
    font-size: 24px;
    color: #B6F500;
    min-width: 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

.faq-icon::before {
    content: '+';
}

.faq-checkbox:checked ~ .faq-question .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    padding: 0 25px;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.faq-answer p {
    font-size: 15px;
    line-height: 1.8;
    color: #d1d5db;
}

/* ===================================
   ORDER FORM SECTION
   =================================== */
.order-section {
    background: linear-gradient(135deg, #0E1320 0%, #161d30 100%);
    position: relative;
    overflow: hidden;
}

.order-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(182, 245, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.order-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.order-info h2 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #B6F500 0%, #5CE1E6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.order-info p {
    font-size: 17px;
    line-height: 1.8;
    color: #d1d5db;
    margin-bottom: 30px;
}

.info-benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #F4F6FA;
}

.info-icon {
    color: #B6F500;
    font-weight: 700;
    font-size: 20px;
}

.order-form-wrapper {
    background: linear-gradient(135deg, rgba(22, 29, 48, 0.8) 0%, rgba(14, 19, 32, 0.9) 100%);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(182, 245, 0, 0.3);
    border-radius: 25px;
    padding: 40px;
}

.order-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #F4F6FA;
}

.form-group input,
.form-group select {
    padding: 14px 18px;
    background: rgba(14, 19, 32, 0.8);
    border: 1px solid rgba(182, 245, 0, 0.3);
    border-radius: 10px;
    color: #F4F6FA;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #B6F500;
    box-shadow: 0 0 0 3px rgba(182, 245, 0, 0.1);
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: #d1d5db;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: #B6F500;
}

.checkbox-label a {
    color: #5CE1E6;
    text-decoration: underline;
}

.checkbox-label a:hover {
    color: #B6F500;
}

.submit-btn {
    background: linear-gradient(135deg, #B6F500 0%, #5CE1E6 100%);
    color: #0E1320;
    padding: 16px 30px;
    border: none;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(182, 245, 0, 0.4);
}

@media (max-width: 992px) {
    .order-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .order-form-wrapper {
        padding: 30px 20px;
    }
}

/* ===================================
   TRUST SECTION
   =================================== */
.trust-section {
    background: #0E1320;
}

.trust-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.trust-content h3 {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 25px;
    color: #F4F6FA;
}

.trust-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #d1d5db;
    margin-bottom: 40px;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.badge-icon {
    font-size: 48px;
}

.badge-text {
    font-size: 15px;
    font-weight: 600;
    color: #F4F6FA;
}

.disclaimer-note {
    padding: 25px;
    background: rgba(255, 92, 92, 0.1);
    border: 1px solid rgba(255, 92, 92, 0.3);
    border-radius: 15px;
    font-size: 14px;
    line-height: 1.7;
    color: #F4F6FA;
}

.disclaimer-note strong {
    color: #FF5C5C;
}

/* ===================================
   FINAL CTA SECTION
   =================================== */
.final-cta-section {
    background: linear-gradient(135deg, rgba(182, 245, 0, 0.1) 0%, rgba(92, 225, 230, 0.1) 100%);
    padding: 80px 0;
}

.final-cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.final-cta-content h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #F4F6FA;
}

.final-cta-content p {
    font-size: 18px;
    color: #d1d5db;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #B6F500 0%, #5CE1E6 100%);
    color: #0E1320;
    padding: 18px 45px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(182, 245, 0, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(182, 245, 0, 0.5);
}

/* ===================================
   FOOTER
   =================================== */
.main-footer {
    background: #161d30;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(182, 245, 0, 0.2);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #B6F500;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.8;
    color: #d1d5db;
    margin-bottom: 12px;
}

.footer-col a {
    color: #5CE1E6;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #B6F500;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 14px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(182, 245, 0, 0.1);
}

.footer-bottom p {
    font-size: 13px;
    color: #9ca3af;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-col {
        width: 100%;
    }
    
    .footer-col p,
    .footer-col a {
        word-break: break-word;
    }
}

/* ===================================
   COOKIE CONSENT
   =================================== */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(22, 29, 48, 0.98);
    backdrop-filter: blur(10px);
    border-top: 2px solid #B6F500;
    padding: 20px;
    z-index: 10000;
    transform: translateY(0);
    transition: transform 0.4s ease;
}

.cookie-consent.hidden {
    transform: translateY(100%);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #F4F6FA;
    flex: 1;
}

.cookie-content a {
    color: #5CE1E6;
    text-decoration: underline;
}

.cookie-btn {
    background: linear-gradient(135deg, #B6F500 0%, #5CE1E6 100%);
    color: #0E1320;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(182, 245, 0, 0.4);
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-consent {
        padding: 15px;
    }
    
    .cookie-content p {
        font-size: 13px;
    }
}

/* ===================================
   CONTENT PAGES (Our Approach, Success Stories, Resources)
   =================================== */
.content-page {
    min-height: 100vh;
    padding: 100px 0 60px;
    background: linear-gradient(180deg, #0E1320 0%, #161d30 100%);
}

.content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.content-header {
    text-align: center;
    margin-bottom: 60px;
}

.content-header h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #B6F500 0%, #5CE1E6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.content-header .lead {
    font-size: 18px;
    line-height: 1.8;
    color: #d1d5db;
    max-width: 800px;
    margin: 0 auto;
}

.content-main {
    background: rgba(22, 29, 48, 0.6);
    border: 1px solid rgba(182, 245, 0, 0.2);
    border-radius: 25px;
    padding: 50px;
    margin-top: 40px;
}

.content-main h2 {
    font-size: 28px;
    font-weight: 700;
    color: #B6F500;
    margin-top: 35px;
    margin-bottom: 15px;
}

.content-main h2:first-child {
    margin-top: 0;
}

.content-main p {
    font-size: 16px;
    line-height: 1.8;
    color: #d1d5db;
    margin-bottom: 20px;
}

/* Approach Visual */
.approach-visual {
    position: relative;
    height: 300px;
    margin: 40px 0 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.visual-element {
    width: 150px;
    height: 200px;
    background: linear-gradient(135deg, rgba(182, 245, 0, 0.2) 0%, rgba(92, 225, 230, 0.2) 100%);
    border: 2px solid rgba(182, 245, 0, 0.3);
    border-radius: 20px;
    animation: floatElement 4s ease-in-out infinite;
}

.visual-element.elem-1 {
    animation-delay: 0s;
}

.visual-element.elem-2 {
    animation-delay: 1.3s;
    height: 220px;
    background: linear-gradient(135deg, rgba(92, 225, 230, 0.2) 0%, rgba(255, 92, 92, 0.2) 100%);
    border-color: rgba(92, 225, 230, 0.3);
}

.visual-element.elem-3 {
    animation-delay: 2.6s;
}

@keyframes floatElement {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-15px) scale(1.05);
    }
}

/* Success Stories Grid */
.stories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.story-card {
    background: rgba(22, 29, 48, 0.6);
    border: 1px solid rgba(182, 245, 0, 0.2);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
}

.story-card:hover {
    border-color: #5CE1E6;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(92, 225, 230, 0.2);
}

.story-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.story-icon {
    font-size: 48px;
    min-width: 60px;
}

.story-meta h3 {
    font-size: 20px;
    font-weight: 700;
    color: #F4F6FA;
    margin-bottom: 5px;
}

.story-meta .location {
    font-size: 13px;
    color: #B6F500;
    font-weight: 600;
}

.story-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #d1d5db;
    margin-bottom: 15px;
}

.story-insight {
    font-style: italic;
    color: #5CE1E6 !important;
    padding: 15px;
    background: rgba(92, 225, 230, 0.05);
    border-left: 3px solid #5CE1E6;
    border-radius: 5px;
    margin-top: 20px;
}

/* Resources Grid */
.resources-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 40px 0;
}

.resource-card {
    background: rgba(22, 29, 48, 0.6);
    border: 1px solid rgba(182, 245, 0, 0.2);
    border-radius: 20px;
    padding: 30px 25px;
    transition: all 0.3s ease;
    text-align: center;
}

.resource-card:hover {
    border-color: #B6F500;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(182, 245, 0, 0.2);
}

.resource-icon {
    font-size: 56px;
    margin-bottom: 15px;
}

.resource-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #F4F6FA;
    margin-bottom: 12px;
}

.resource-card p {
    font-size: 14px;
    line-height: 1.7;
    color: #d1d5db;
}

/* Info Boxes */
.disclaimer-box,
.info-box {
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 40px;
}

.disclaimer-box {
    background: rgba(255, 92, 92, 0.1);
    border: 2px solid rgba(255, 92, 92, 0.3);
}

.info-box {
    background: rgba(92, 225, 230, 0.1);
    border: 2px solid rgba(92, 225, 230, 0.3);
}

.disclaimer-box h3,
.info-box h3 {
    font-size: 20px;
    font-weight: 700;
    color: #FF5C5C;
    margin-bottom: 15px;
}

.info-box h3 {
    color: #5CE1E6;
}

.disclaimer-box p,
.info-box p {
    font-size: 15px;
    line-height: 1.7;
    color: #F4F6FA;
    margin-bottom: 12px;
}

.disclaimer-box p:last-child,
.info-box p:last-child {
    margin-bottom: 0;
}

/* CTA Block */
.cta-block {
    text-align: center;
    padding: 50px 30px;
    background: linear-gradient(135deg, rgba(182, 245, 0, 0.1) 0%, rgba(92, 225, 230, 0.1) 100%);
    border-radius: 20px;
    margin-top: 40px;
}

.cta-block h3 {
    font-size: 32px;
    font-weight: 800;
    color: #F4F6FA;
    margin-bottom: 15px;
}

.cta-block p {
    font-size: 17px;
    color: #d1d5db;
    margin-bottom: 30px;
}

/* Responsive for Content Pages */
@media (max-width: 992px) {
    .stories-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .resources-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .approach-visual {
        height: 200px;
    }

    .visual-element {
        width: 100px;
        height: 150px;
    }

    .visual-element.elem-2 {
        height: 170px;
    }
}

@media (max-width: 768px) {
    .content-header h1 {
        font-size: 36px;
    }

    .content-main {
        padding: 30px 20px;
    }

    .resources-grid {
        grid-template-columns: 1fr;
    }

    .approach-visual {
        flex-direction: column;
        height: auto;
        gap: 20px;
    }

    .visual-element {
        width: 200px;
        height: 120px;
    }

    .visual-element.elem-2 {
        height: 140px;
    }

    .cta-block {
        padding: 40px 20px;
    }

    .cta-block h3 {
        font-size: 26px;
    }
}

