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

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #ffffff;
            color: #1B3B5F;
            line-height: 1.7;
            overflow-x: hidden;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 120px 60px 80px;
            position: relative;
            overflow: hidden;
            
            /* Image de background avec overlay */
            background-image: 
                linear-gradient(135deg, rgba(248, 249, 250, 0.95) 0%, rgba(255, 255, 255, 0.90) 100%),
                url('../IMG/startup-hero.jpg');
            background-size: cover;
            background-position: center center;
            background-repeat: no-repeat;
            background-attachment: fixed;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background: radial-gradient(circle at top right, rgba(184, 120, 84, 0.05), transparent 70%);
            pointer-events: none;
        }

        .hero-container {
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
            position: relative;
            z-index: 1;
        }

        .hero-content {
            max-width: 800px;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease forwards;
        }

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

        .hero-label {
            display: inline-block;
            font-size: 13px;
            font-weight: 600;
            color: #B87854;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 30px;
            animation: fadeInUp 1s ease 0.2s forwards;
            opacity: 0;
        }

        .hero h1 {
            font-size: 64px;
            font-weight: 700;
            line-height: 1.15;
            margin-bottom: 30px;
            color: #1B3B5F;
            animation: fadeInUp 1s ease 0.4s forwards;
            opacity: 0;
        }

        .hero-highlight {
            color: #B87854;
            position: relative;
            display: inline-block;
        }

        .hero-highlight::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 8px;
            background: rgba(184, 120, 84, 0.15);
            z-index: -1;
        }

        .hero p {
            font-size: 20px;
            line-height: 1.7;
            color: #4A5568;
            margin-bottom: 50px;
            max-width: 650px;
            animation: fadeInUp 1s ease 0.6s forwards;
            opacity: 0;
        }

        .hero-cta {
            display: inline-block;
            background: #1B3B5F;
            color: white;
            padding: 18px 40px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
            animation: fadeInUp 1s ease 0.8s forwards;
            opacity: 0;
            margin-right: 15px;
        }

        .hero-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transition: left 0.5s;
        }

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

        .hero-cta:hover {
            background: #2d5280;
            transform: translateX(5px);
        }

        /* Section */
        .section {
            padding: 120px 60px;
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
        }

        .section-startup-label {
            font-size: 13px;
            font-weight: 600;
            color: #B87854;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 20px;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.6s ease;
        }

        .section-startup-label.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .section-startup-title {
            font-size: 48px;
            font-weight: 700;
            color: #1B3B5F;
            margin-bottom: 25px;
            line-height: 1.2;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.6s ease 0.1s;
        }

        .section-startup-title.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .section-startup-intro {
            font-size: 19px;
            color: #4A5568;
            max-width: 700px;
            margin-bottom: 70px;
            line-height: 1.7;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.6s ease 0.2s;
        }

        .section-startup-intro.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Grid Layout */
        .grid-startup {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 50px;
        }

        /* Card Style */
        .card {
            background: white;
            padding: 45px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            opacity: 0;
            transform: translateY(30px);
            box-shadow: 0 10px 30px rgba(27, 59, 95, 0.03);
        }

        .card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .card:nth-child(1) {
            transition-delay: 0.1s;
        }

        .card:nth-child(2) {
            transition-delay: 0.2s;
        }

        .card:nth-child(3) {
            transition-delay: 0.3s;
        }

        .card:hover {
            transform: translateY(-8px);
            box-shadow: 0 30px 60px rgba(27, 59, 95, 0.08);
        }

        .card-header-startup {
            margin-bottom: 30px;
        }

        .card-icon-startup {
            width: 60px;
            height: 60px;
            background: #f8f9fa;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            font-weight: 700;
            color: #1B3B5F;
            margin-bottom: 25px;
            transition: all 0.3s ease;
            position: relative;
        }

        .card:hover .card-icon-startup {
            background: #1B3B5F;
            color: white;
        }

        .card-icon-startup::after {
            content: '';
            position: absolute;
            bottom: -5px;
            right: -5px;
            width: 15px;
            height: 15px;
            background: #B87854;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .card:hover .card-icon-startup::after {
            opacity: 1;
        }

        .card-title-startup {
            font-size: 24px;
            font-weight: 700;
            color: #1B3B5F;
            margin-bottom: 12px;
            transition: color 0.3s ease;
        }

        .card:hover .card-title-startup {
            color: #B87854;
        }

        .card-subtitle-startup {
            font-size: 14px;
            color: #4A5568;
            font-weight: 400;
        }

        .card-content-startup {
            font-size: 16px;
            color: #4A5568;
            line-height: 1.8;
        }

        .card-content-startup p {
            margin-bottom: 18px;
            position: relative;
            padding-left: 20px;
        }

        .card-content-startup p::before {
            content: '•';
            position: absolute;
            left: 0;
            color: #B87854;
            font-weight: 700;
        }

        .card-content-startup p:last-child {
            margin-bottom: 0;
        }

        .card-content-startup strong {
            color: #1B3B5F;
            font-weight: 600;
        }

        /* Accent Section */
        .accent-section {
            background: linear-gradient(135deg, white 0%, #f7f8fa 100%);
            color: #1B3B5F;
            padding: 100px 60px;
            margin: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .accent-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(184, 120, 84, 0.1), transparent 70%);
            border-radius: 50%;
        }

        .accent-container {
            max-width: 1400px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .accent-section h2 {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 25px;
            color: rgb(37, 63, 105);
        }

        .accent-section p {
            font-size: 19px;
            opacity: 0.9;
            max-width: 700px;
            margin: 0 auto 50px;
            line-height: 1.7;
        }

        .accent-cta {
            display: inline-block;
            background: #B87854;
            color: white;
            padding: 18px 40px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }

        .accent-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }

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

        .accent-cta:hover {
            background: #a36848;
            transform: translateX(5px);
        }

        /* Stats Grid */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-top: 60px;
        }

        .stat-item {
            text-align: center;
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(27, 59, 95, 0.03);
            transition: all 0.3s ease;
        }

        .stat-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(27, 59, 95, 0.08);
        }

        .stat-number {
            display: block;
            font-size: 42px;
            font-weight: 700;
            color: #B87854;
            margin-bottom: 12px;
        }

        .stat-label {
            font-size: 14px;
            color: #4A5568;
        }

        /* Info Box */
        .info-box {
            background: white;
            padding: 50px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(27, 59, 95, 0.03);
            margin-bottom: 40px;
        }

        .info-box h3 {
            font-size: 28px;
            font-weight: 700;
            color: #1B3B5F;
            margin-bottom: 25px;
        }

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

        .info-list li {
            padding: 12px 0;
            padding-left: 30px;
            position: relative;
            color: #4A5568;
        }

        .info-list li::before {
            content: '→';
            position: absolute;
            left: 0;
            color: #B87854;
            font-weight: 700;
        }

        /* Process Steps */
        .process-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin: 50px 0;
        }

        .process-step {
            text-align: center;
            padding: 30px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(27, 59, 95, 0.03);
            transition: all 0.3s ease;
        }

        .process-step:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(27, 59, 95, 0.08);
        }

        .process-number {
            width: 50px;
            height: 50px;
            background: #B87854;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            font-weight: 700;
            margin: 0 auto 20px;
        }

        .process-step h4 {
            font-size: 18px;
            font-weight: 700;
            color: #1B3B5F;
            margin-bottom: 10px;
        }

        .process-step p {
            font-size: 14px;
            color: #4A5568;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .nav {
                padding: 20px;
            }

            .nav-links {
                display: none;
            }

            .hero {
                background-attachment: scroll;
                background-position: center center;
                padding: 100px 20px 60px;
            }

            .hero h1 {
                font-size: 42px;
            }

            .section {
                padding: 80px 20px;
            }

            .section-startup-title {
                font-size: 36px;
            }

            .grid,
            .stats-grid {
                grid-template-columns: 1fr;
            }

            .stats-grid {
                gap: 20px;
            }
        }

/* ========== RESPONSIVE MOBILE STARTUPS ========== */

/* Tablettes (768px - 1024px) */
@media (max-width: 1024px) {
    /* Hero */
    .hero {
        padding: 100px 40px 60px;
        min-height: 90vh;
    }

    .hero h1 {
        font-size: 48px;
    }

    .hero p {
        font-size: 18px;
        margin-bottom: 40px;
    }

    .hero-cta {
        padding: 16px 32px;
        font-size: 15px;
        margin-right: 10px;
    }

    /* Sections */
    .section {
        padding: 80px 40px;
    }

    .section-startup-title {
        font-size: 40px;
    }

    .section-startup-intro {
        font-size: 17px;
        margin-bottom: 50px;
    }

    /* Grid - 2 colonnes */
    .grid-startup {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }

    /* Stats Grid - 2 colonnes */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    /* Process Grid */
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

/* Mobile (481px - 767px) */
@media (max-width: 767px) {
    /* Hero */
    .hero {
        padding: 80px 24px 50px;
        min-height: auto;
        padding-top: 140px; /* Compenser le header mobile */
    }

    .hero::before {
        width: 100%;
        opacity: 0.5;
    }

    .hero-label {
        font-size: 11px;
        letter-spacing: 1px;
        margin-bottom: 20px;
    }

    .hero h1 {
        font-size: 36px;
        line-height: 1.2;
        margin-bottom: 25px;
    }

    .hero-highlight::after {
        height: 6px;
    }

    .hero p {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 35px;
        max-width: 100%;
    }

    /* Hero CTA - Boutons empilés */
    .hero-cta {
        padding: 14px 28px;
        font-size: 14px;
        margin-right: 0;
        margin-bottom: 12px;
        display: block;
        width: 100%;
        text-align: center;
    }

    .hero-cta:last-child {
        margin-bottom: 0;
    }

    /* Sections */
    .section {
        padding: 60px 24px;
    }

    .section-startup-label {
        font-size: 11px;
        margin-bottom: 15px;
    }

    .section-startup-title {
        font-size: 32px;
        margin-bottom: 20px;
        line-height: 1.3;
    }

    .section-startup-intro {
        font-size: 16px;
        margin-bottom: 40px;
        max-width: 100%;
    }

    /* Grid - 1 colonne */
    .grid-startup {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Cards */
    .card {
        padding: 30px 24px;
    }

    .card-icon-startup {
        width: 50px;
        height: 50px;
        font-size: 24px;
        margin-bottom: 20px;
    }

    .card-icon-startup::after {
        width: 12px;
        height: 12px;
        bottom: -4px;
        right: -4px;
    }

    .card-title-startup {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .card-subtitle-startup {
        font-size: 13px;
    }

    .card-content-startup {
        font-size: 15px;
    }

    .card-content-startup p {
        margin-bottom: 15px;
        padding-left: 18px;
    }

    /* Info Box */
    .info-box {
        padding: 35px 24px;
        margin-bottom: 30px;
        border-radius: 12px;
    }

    .info-box h3 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .info-list li {
        padding: 10px 0;
        padding-left: 25px;
        font-size: 15px;
    }

    /* Info Box avec style inline (gradient) */
    .info-box[style*="background: linear-gradient"] {
        padding: 40px 24px !important;
    }

    .info-box[style*="background: linear-gradient"] h3 {
        font-size: 24px !important;
        margin-bottom: 15px !important;
    }

    .info-box[style*="background: linear-gradient"] p {
        font-size: 16px !important;
        margin-bottom: 15px !important;
    }

    /* Stats Grid - 1 colonne */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }

    .stat-item {
        padding: 25px 20px;
    }

    .stat-number {
        font-size: 36px;
        margin-bottom: 10px;
    }

    .stat-label {
        font-size: 13px;
    }

    /* Process Grid - 1 colonne */
    .process-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 40px 0;
    }

    .process-step {
        padding: 25px 20px;
    }

    .process-number {
        width: 45px;
        height: 45px;
        font-size: 18px;
        margin-bottom: 15px;
    }

    .process-step h4 {
        font-size: 17px;
        margin-bottom: 8px;
    }

    .process-step p {
        font-size: 13px;
    }

    /* Accent Section */
    .accent-section {
        padding: 60px 24px;
        margin: 60px 0;
    }

    .accent-section::before {
        display: none;
    }

    .accent-section h2 {
        font-size: 32px;
        margin-bottom: 20px;
        line-height: 1.3;
    }

    .accent-section p {
        font-size: 16px;
        margin-bottom: 35px;
        max-width: 100%;
    }

    .accent-cta {
        padding: 16px 32px;
        font-size: 15px;
        width: 100%;
        display: block;
        text-align: center;
    }
}

/* Petits mobiles (320px - 480px) */
@media (max-width: 480px) {
    /* Hero */
    .hero {
        padding: 70px 20px 40px;
        padding-top: 120px;
    }

    .hero-label {
        font-size: 10px;
        margin-bottom: 18px;
    }

    .hero h1 {
        font-size: 28px;
        line-height: 1.25;
        margin-bottom: 20px;
    }

    .hero-highlight::after {
        height: 5px;
    }

    .hero p {
        font-size: 15px;
        line-height: 1.5;
        margin-bottom: 30px;
    }

    .hero-cta {
        padding: 12px 24px;
        font-size: 13px;
        margin-bottom: 10px;
    }

    /* Sections */
    .section {
        padding: 50px 20px;
    }

    .section-startup-label {
        font-size: 10px;
        margin-bottom: 12px;
    }

    .section-startup-title {
        font-size: 28px;
        margin-bottom: 18px;
        line-height: 1.25;
    }

    .section-startup-intro {
        font-size: 15px;
        margin-bottom: 35px;
    }

    /* Cards */
    .card {
        padding: 25px 20px;
    }

    .card-icon-startup {
        width: 45px;
        height: 45px;
        font-size: 20px;
        margin-bottom: 18px;
    }

    .card-icon-startup::after {
        width: 10px;
        height: 10px;
        bottom: -3px;
        right: -3px;
    }

    .card-title-startup {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .card-subtitle-startup {
        font-size: 12px;
    }

    .card-content-startup {
        font-size: 14px;
    }

    .card-content-startup p {
        margin-bottom: 12px;
        padding-left: 16px;
    }

    /* Info Box */
    .info-box {
        padding: 30px 20px;
        margin-bottom: 25px;
        border-radius: 10px;
    }

    .info-box h3 {
        font-size: 22px;
        margin-bottom: 18px;
    }

    .info-list li {
        padding: 8px 0;
        padding-left: 22px;
        font-size: 14px;
    }

    /* Info Box gradient */
    .info-box[style*="background: linear-gradient"] {
        padding: 35px 20px !important;
    }

    .info-box[style*="background: linear-gradient"] h3 {
        font-size: 22px !important;
        margin-bottom: 12px !important;
    }

    .info-box[style*="background: linear-gradient"] p {
        font-size: 15px !important;
        margin-bottom: 12px !important;
    }

    /* Stats */
    .stats-grid {
        gap: 18px;
        margin-top: 35px;
    }

    .stat-item {
        padding: 22px 18px;
    }

    .stat-number {
        font-size: 32px;
        margin-bottom: 8px;
    }

    .stat-label {
        font-size: 12px;
    }

    /* Process */
    .process-grid {
        gap: 18px;
        margin: 35px 0;
    }

    .process-step {
        padding: 22px 18px;
    }

    .process-number {
        width: 42px;
        height: 42px;
        font-size: 16px;
        margin-bottom: 12px;
    }

    .process-step h4 {
        font-size: 16px;
        margin-bottom: 6px;
    }

    .process-step p {
        font-size: 12px;
    }

    /* Accent Section */
    .accent-section {
        padding: 50px 20px;
        margin: 50px 0;
    }

    .accent-section h2 {
        font-size: 28px;
        margin-bottom: 18px;
    }

    .accent-section p {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .accent-cta {
        padding: 14px 28px;
        font-size: 14px;
    }
}

/* Correction débordement horizontal */
@media (max-width: 767px) {
    body {
        overflow-x: hidden !important;
        max-width: 100vw !important;
    }

    * {
        max-width: 100%;
    }

    .hero-container,
    .accent-container {
        width: 100%;
        max-width: 100%;
    }
}

/* Désactiver le parallax sur mobile */
@media (max-width: 767px) {
    .hero-content {
        transform: none !important;
        opacity: 1 !important;
    }
}

/* Animations mobiles optimisées */
@media (max-width: 767px) {
    .card:hover {
        transform: translateY(-4px);
    }

    .stat-item:hover,
    .process-step:hover {
        transform: translateY(-3px);
    }

    /* Réduire les délais d'animation sur mobile */
    .card {
        transition-delay: 0s !important;
    }
}

/* Mode paysage mobile */
@media (max-width: 767px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 60px 24px 40px;
        padding-top: 100px;
    }

    .hero h1 {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .hero p {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .hero-cta {
        display: inline-block;
        width: auto;
        margin-right: 10px;
        padding: 12px 24px;
    }

    .hero-cta:last-child {
        margin-right: 0;
    }

    .section {
        padding: 50px 24px;
    }

    /* Grid en 2 colonnes sur paysage */
    .grid-startup {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stats-grid,
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

/* Amélioration des cards sur très petits écrans */
@media (max-width: 360px) {
    .card {
        padding: 20px 16px;
    }

    .info-box {
        padding: 25px 16px;
    }

    .stat-item,
    .process-step {
        padding: 20px 16px;
    }
}

/* Gestion des marges pour éviter le collage */
@media (max-width: 767px) {
    .section:first-of-type {
        padding-top: 40px;
    }

    .section:last-of-type {
        padding-bottom: 40px;
    }
}

/* Optimisation des emoji sur mobile */
@media (max-width: 480px) {
    .card-icon-startup {
        font-size: 22px;
        line-height: 1;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Amélioration accessibilité boutons */
@media (max-width: 767px) {
    .hero-cta,
    .accent-cta {
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Optimisation hover sur tactile */
@media (hover: none) and (pointer: coarse) {
    .card:hover,
    .stat-item:hover,
    .process-step:hover {
        transform: translateY(0);
    }

    .card:active {
        transform: translateY(-2px);
    }
}

/* Fix pour les paragraphes dans info-box avec styles inline */
@media (max-width: 767px) {
    .info-box p[style*="color: #4A5568"] {
        font-size: 15px !important;
        line-height: 1.7 !important;
    }
}

/* Amélioration espacement vertical sur mobile */
@media (max-width: 480px) {
    .grid-startup {
        gap: 25px;
    }

    .info-box {
        margin-bottom: 20px;
    }
}

/* Fix margin top pour éviter chevauchement header */
@media (max-width: 767px) {
    main.mt-10 {
        margin-top: 0 !important;
    }
}

/* Amélioration lisibilité FAQ sur mobile */
@media (max-width: 480px) {
    .info-box h3 {
        line-height: 1.3;
    }

    .info-list li::before {
        font-size: 14px;
    }
}

/* Optimisation process number sur très petits écrans */
@media (max-width: 360px) {
    .process-number {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }
}


        /* Styles pour la section Ressources & Outils - Charte CELER */
        .resources-section {
            background: #f8f9fa;
            padding: 80px 20px;
        }
        
        .resources-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .section-header-resources {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-header-resources h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #1B3B5F;
            margin-bottom: 1rem;
        }
        
        .section-header-resources p {
            font-size: 1.125rem;
            color: #4A5568;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.8;
        }
        
        .resources-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-bottom: 4rem;
        }
        
        .resource-card {
            background: white;
            border-radius: 12px;
            padding: 2rem;
            box-shadow: 0 4px 20px rgba(27, 59, 95, 0.08);
            transition: all 0.3s ease;
            border-left: 4px solid #1B3B5F;
        }
        
        .resource-card.copper-accent {
            border-left-color: #B87854;
        }
        
        .resource-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(27, 59, 95, 0.15);
        }
        
        .resource-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #1B3B5F;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .resource-card h3 i {
            color: #B87854;
        }
        
        .resource-card p {
            color: #4A5568;
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }
        
        .resource-btn {
            display: inline-block;
            padding: 0.75rem 1.5rem;
            background: #1B3B5F;
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.3s ease;
            font-size: 0.95rem;
        }
        
        .resource-btn:hover {
            background: #2d5280;
            transform: translateY(-2px);
        }
        
        .resource-btn.copper {
            background: #B87854;
        }
        
        .resource-btn.copper:hover {
            background: #a36848;
        }
        
        .tools-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }
        
        .tool-card {
            background: white;
            border-radius: 12px;
            padding: 2rem;
            box-shadow: 0 4px 20px rgba(27, 59, 95, 0.08);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .tool-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(135deg, #1B3B5F 0%, #2d5280 100%);
        }
        
        .tool-card.copper-gradient::before {
            background: linear-gradient(135deg, #B87854 0%, #a36848 100%);
        }
        
        .tool-card.mixed-gradient::before {
            background: linear-gradient(135deg, #1B3B5F 0%, #B87854 100%);
        }
        
        .tool-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 40px rgba(27, 59, 95, 0.15);
        }
        
        .tool-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #1B3B5F 0%, #2d5280 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: white;
            font-size: 1.5rem;
        }
        
        .tool-card.copper-gradient .tool-icon {
            background: linear-gradient(135deg, #B87854 0%, #a36848 100%);
        }
        
        .tool-card.mixed-gradient .tool-icon {
            background: linear-gradient(135deg, #1B3B5F 0%, #B87854 100%);
        }
        
        .tool-card h4 {
            font-size: 1.25rem;
            font-weight: 700;
            color: #1B3B5F;
            margin-bottom: 0.75rem;
        }
        
        .tool-card p {
            color: #4A5568;
            line-height: 1.6;
            margin-bottom: 1.5rem;
            font-size: 0.95rem;
        }
        
        .tool-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem 1.5rem;
            background: #1B3B5F;
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.3s ease;
            font-size: 0.9rem;
        }
        
        .tool-btn:hover {
            background: #2d5280;
            transform: translateX(5px);
        }
        
        .cta-banner {
            margin-top: 4rem;
            padding: 3rem;
            background: linear-gradient(135deg, #1B3B5F 0%, #2d5280 100%);
            border-radius: 16px;
            text-align: center;
            color: white;
        }
        
        .cta-banner h3 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }
        
        .cta-banner p {
            font-size: 1.125rem;
            margin-bottom: 2rem;
            opacity: 0.95;
        }
        
        .cta-banner-btn {
            display: inline-block;
            padding: 1rem 2.5rem;
            background: white;
            color: #1B3B5F;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.3s ease;
            font-size: 1rem;
        }
        
        .cta-banner-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        }
        
        @media (max-width: 768px) {
            .resources-grid,
            .tools-grid {
                grid-template-columns: 1fr;
            }
            
            .section-header-resources h2 {
                font-size: 2rem;
            }
        }