#contact-us-content .header {
    text-align: center;
    padding: 15px 10px;
    color: white;
    animation: fadeIn 1s ease;
    background-color: #1d5400;
    border-radius: 20px 20px 0px 0px;
}

#contact-us-content .header h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
    animation: slideInDown 0.8s ease;
    font-family: 'EB Garamond';
    font-weight: bold;
}

#contact-us-content .header .subtitle {
    font-size: 2em;
    margin: 0 auto;
    opacity: 0.95;
    line-height: 1.8;
    animation: slideInUp 0.8s ease;
    font-family: 'EB Garamond';
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 30px;
    margin-bottom: 40px;
}

 .highlight-support {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: 20px;
    padding: 30px;
    border-left: 6px solid #f59e0b;
    box-shadow: 0 25px 70px rgba(0,0,0,0.3);
    animation: fadeInUp 0.8s ease;
    margin: 20px 0px;
}

        .highlight-support h2 {
            color: #78350f;
            font-size: 2.2em;
            margin-bottom: 15px;
            font-family: 'EB Garamond';
            font-weight: bold;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .highlight-support .highlight-icon {
            font-size: 2em;
        }

        .highlight-support p {
            color: #92400e;
            font-size: 1.2em;
            line-height: 1.8;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .support-card {
            background: white;
            border-radius: 25px;
            padding: 0;
            overflow: hidden;
            box-shadow: 0 25px 70px rgba(0,0,0,0.3);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            animation: fadeInUp 0.8s ease;
            position: relative;
        }

        .support-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: linear-gradient(180deg, #1d5400 0%, #4fd508 100%);
        }

        .support-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 80px rgba(0,0,0,0.5);
        }

        .card-header {
            background: linear-gradient(135deg, #1d5400 0%, #4fd508 100%);
            color: white;
            padding: 30px;
            text-align: center;
        }

        .card-header-icon {
            font-size: 3em;
            margin-bottom: 15px;
            display: block;
        }

.card-header h2 {
    font-size: 2em;
    margin-bottom: 10px;
    font-family: 'EB Garamond';
    font-weight: bold;
    color: white !important;
}

.card-header p {
    opacity: 0.95;
    font-size: 1.05em;
    line-height: 1.6;
    margin: 0px;
}

        .card-body {
            padding: 20px;
        }

        .contact-person {
            background: #f0fdf4;
            padding: 25px;
            border-radius: 12px;
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }

        .contact-person:hover {
            background: #dcfce7;
            transform: translateX(5px);
        }

        .contact-person:last-child {
            margin-bottom: 0;
        }

        .person-name {
            font-size: 1.4em;
            color: #1a202c;
            font-weight: bold;
            margin-bottom: 8px;
            font-family: 'EB Garamond';
        }

        .person-title {
            color: #1d5400;
            font-weight: 600;
            margin-bottom: 15px;
            font-size: 1.05em;
        }

        .contact-detail {
            display: flex;
            align-items: center;
            margin: 10px 0;
            color: black;
            font-size: 1.05em;
        }

      

        .contact-detail a {
            color: black;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-detail a:hover {
            color: #1d5400;
        }


.scope-section {
            background: white;
            border-radius: 25px;
            padding: 30px;
            box-shadow: 0 25px 70px rgba(0,0,0,0.3);
            animation: fadeInUp 1s ease;
            position: relative;
            overflow: hidden;
        }

        .scope-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: linear-gradient(180deg, #1d5400 0%, #4fd508 100%);
        }

        .scope-section h3 {
            color: #7f1215 !important;
            font-size: 2em;
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            gap: 15px;
            font-family: 'EB Garamond';
            font-weight: bold;
        }

        .scope-icon {
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5em;
        }

        .scope-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }

        .scope-item {
            background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
            padding: 20px;
            border-radius: 12px;
            border-left: 4px solid #1d5400;
            transition: all 0.3s ease;
            color: black;
        }

        .scope-item:hover {
            transform: translateX(10px);
            box-shadow: 0 10px 30px rgba(29, 84, 0, 0.2);
        }

        .scope-item::before {
            content: '✓';
            display: inline-block;
            background: #1d5400;
            color: white;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            text-align: center;
            line-height: 28px;
            margin-right: 12px;
            font-weight: bold;
        }

        .footer-card {
            background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
            color: #78350f;
            border-radius: 20px;
            padding: 40px;
            text-align: center;
            margin-top: 40px;
            box-shadow: 0 25px 60px rgba(0,0,0,0.3);
            animation: fadeInUp 1.2s ease;
            border-left: 6px solid #f59e0b;
        }

        .footer-card h2 {
            font-size: 2.2em;
            margin-bottom: 15px;
            color: #78350f;
            font-family: 'EB Garamond';
            font-weight: bold;
        }

        .footer-card p {
            font-size: 1.3em;
            line-height: 1.8;
            max-width: 800px;
            margin: 0 auto;
            color: #92400e;
            font-weight: 600;
        }

        .footer-icon {
            font-size: 3em;
            margin-bottom: 20px;
            display: block;
        }

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

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

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

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

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

            .header .subtitle {
                font-size: 1.1em;
            }

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

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

            .card-body, .scope-section, .footer-card {
                padding: 25px;
            }
        }