.iact-container {
    font-family: 'Arial', sans-serif;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    line-height: 1.6;
    color: #333;
}
.iact-container h1 {
    color: #086586;
    border-bottom: 2px solid #fd4f18;
    padding-bottom: 10px;
}
.iact-container h2 {
    color: #086586;
    margin-top: 25px;
}
.iact-container p {
    margin-bottom: 15px;
}


:root {
    /* Primary Brand Colors - Teal */
    --primary: #086586;
    --primary-light: #0a8fb8;
    --primary-dark: #054d66;
    --primary-darker: #043d51;
    
    /* Secondary Brand Colors - Orange */
    --secondary: #fd4f18;
    --secondary-light: #ff7a4d;
    --secondary-dark: #d43d0f;
    
    /* Accent - Using secondary */
    --accent: #fd4f18;
    
    /* Legacy mappings */
    --light: #f8f9fa;
    --dark: #212529;
    --gray: #6c757d;
    --success: #0a8fb8;
    --border-radius: 12px;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: #fff;
    overflow-x: hidden;
}

header {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 1rem;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: var(--transition);
}

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

/* Hamburger menu styles */
.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    background-color: var(--dark);
    transition: var(--transition);
}

/* Mobile menu styles */
.mobile-nav {
    position: fixed;
    top: 100px;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    display: none;
    flex-direction: column;
    gap: 1rem;
    z-index: 999;
}

.mobile-nav a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    padding: 0.5rem 0;
    transition: var(--transition);
}

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

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background-color: var(--secondary);
    color: white;
    border: 1px solid var(--secondary);
}

.btn-secondary:hover {
    background-color: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.hero {
    padding-top: 7rem;
    padding-bottom: 5rem;
    background: linear-gradient(to right, #f8f9fa, #e9ecef);
    width: 100%;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--dark);
    line-height: 1.2;
}

.hero-tagline {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
    font-weight: 600;
}

.hero-intro {
    font-size: 1.2rem;
    max-width: 700px;
    margin-bottom: 2.5rem;
    color: var(--gray);
}

.hero-btns {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
    color: var(--dark);
}

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

.about-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--gray);
}

.about-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem auto;
    font-size: 1.2rem;
    color: var(--gray);
    line-height: 1.8;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.about-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.about-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.about-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.about-item h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.about-item p {
    color: var(--gray);
    text-align: left;
    line-height: 1.7;
}

/* Goals Section - Updated with brand colors */
.goals {
    background: linear-gradient(135deg, #086586 0%, #0a8fb8 100%);
    color: white;
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

.goals::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M30 30c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20zm0 0c0 11.046 8.954 20 20 20s20-8.954 20-20-8.954-20-20-20-20 8.954-20 20z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    animation: float 30s infinite linear;
    pointer-events: none;
}

@keyframes float {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(-60px, -60px) rotate(360deg); }
}

.goals-container {
    position: relative;
    z-index: 2;
}

.goals-header {
    text-align: center;
    margin-bottom: 4rem;
}

.goals-header .section-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.goals-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

.goals-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.goal-card:nth-child(3) {
    grid-column: auto;
}

.goal-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    position: relative;
    transition: var(--transition);
    overflow: hidden;
}

.goal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #fd4f18, #ff7a4d, #fd4f18);
}

.goal-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.goal-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.goal-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(253, 79, 24, 0.3), rgba(253, 79, 24, 0.15));
    border: 2px solid rgba(253, 79, 24, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
    position: relative;
}

.goal-number::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(253, 79, 24, 0.15), transparent);
    z-index: -1;
}

.goal-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.goal-content {
    flex: 1;
}

.goal-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.goal-subtitle-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.goal-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.goal-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.highlight-tag {
    background: rgba(253, 79, 24, 0.2);
    border: 1px solid rgba(253, 79, 24, 0.4);
    border-radius: 20px;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    transition: var(--transition);
}

.highlight-tag:hover {
    background: rgba(253, 79, 24, 0.35);
    transform: translateY(-2px);
}

.impact-metrics {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.metric {
    text-align: center;
}

.metric-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fd4f18;
    line-height: 1;
}

.metric-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Specific goal styling - Updated with brand colors */
.goal-card:nth-child(1) .goal-icon { background: linear-gradient(135deg, #fd4f18, #ff7a4d); }
.goal-card:nth-child(2) .goal-icon { background: linear-gradient(135deg, #0a8fb8, #086586); }
.goal-card:nth-child(3) .goal-icon { background: linear-gradient(135deg, #ff7a4d, #fd4f18); }
.goal-card:nth-child(4) .goal-icon { background: linear-gradient(135deg, #086586, #0a8fb8); }

/* Who is IACT for section */
.who-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    padding: 6rem 0;
}

.who-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23086586' fill-opacity='0.02'%3E%3Ccircle cx='20' cy='20' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    pointer-events: none;
}

.who-container {
    position: relative;
    z-index: 2;
}

.who-header {
    text-align: center;
    margin-bottom: 4rem;
}

.who-header .section-title {
    color: var(--dark);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.who-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.audience-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(8, 101, 134, 0.1);
}

.audience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.audience-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.audience-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.audience-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
    position: relative;
}

.audience-icon::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(8, 101, 134, 0.1), transparent);
    z-index: -1;
}

.audience-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.audience-role {
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.audience-description {
    color: var(--gray);
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 2rem;
}

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

.benefit-item-new {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.8rem;
    background: rgba(8, 101, 134, 0.05);
    border-radius: 10px;
    transition: var(--transition);
}

.benefit-item-new:hover {
    background: rgba(8, 101, 134, 0.1);
    transform: translateX(5px);
}

.benefit-check {
    width: 24px;
    height: 24px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.benefit-text {
    color: var(--dark);
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.5;
}

/* Specific audience styling - Updated with brand colors */
.audience-card:nth-child(1) .audience-icon {
    background: linear-gradient(135deg, #086586, #0a8fb8);
}
.audience-card:nth-child(2) .audience-icon {
    background: linear-gradient(135deg, #fd4f18, #ff7a4d);
}
.audience-card:nth-child(3) .audience-icon {
    background: linear-gradient(135deg, #0a8fb8, #086586);
}
.audience-card:nth-child(4) .audience-icon {
    background: linear-gradient(135deg, #ff7a4d, #fd4f18);
}

.cta-section {
    background: linear-gradient(135deg, #086586 0%, #0a8fb8 100%);
    color: white;
    text-align: center;
    padding: 3rem 0;
    margin-top: 4rem;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M30 30c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    animation: float 25s infinite linear;
    pointer-events: none;
}

.cta-content-who {
    position: relative;
    z-index: 2;
}

.cta-title-who {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-desc-who {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-btn-who {
    background: var(--secondary);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.cta-btn-who:hover {
    background: var(--secondary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(253, 79, 24, 0.3);
}

/* Responsive Design */
@media (max-width: 968px) {
    .audience-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .who-section {
        padding: 4rem 0;
    }

    .who-header .section-title {
        font-size: 2rem;
    }

    .who-subtitle {
        font-size: 1rem;
    }

    .audience-card {
        padding: 2rem;
    }

    .audience-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .audience-content h3 {
        font-size: 1.3rem;
    }

    .cta-title-who {
        font-size: 1.75rem;
    }

    .cta-section {
        margin-top: 2rem;
        padding: 2.5rem 1rem;
    }
}

@media (max-width: 480px) {
    .audience-card {
        padding: 1.5rem;
    }

    .audience-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }

    .who-header .section-title {
        font-size: 1.75rem;
    }
}

.features {
    background-color: var(--light);
}

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

.feature-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 3px solid var(--primary);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    border-top-color: var(--secondary);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.feature-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.feature-desc {
    color: var(--gray);
}

.cta {
    text-align: center;
    background: linear-gradient(135deg, #086586 0%, #0a8fb8 100%);
    color: white;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.cta-desc {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.btn-cta {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.btn-light {
    background-color: white;
    color: var(--primary);
}

.btn-light:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.btn-outline:hover {
    background-color: var(--secondary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(253, 79, 24, 0.3);
}

footer {
    background-color: var(--dark);
    color: white;
    padding: 3rem 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary);
}

.footer-contact {
    margin-bottom: 1.5rem;
}

.footer-copyright {
    font-size: 0.9rem;
    color: #adb5bd;
}

/* Media Queries */
@media (max-width: 768px) {
    .hero-content{
        margin-top: 20px;
    }
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-tagline {
        font-size: 1.2rem;
    }

    .hero-intro {
        font-size: 1rem;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
    }

    .hero-btns .btn {
        width: 100%;
    }

    .cta-btns {
        flex-direction: column;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

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

    .nav-links {
        display: none;
    }

    .hamburger {
        display: block;
    }

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

    /* Hamburger animation */
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

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

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

    .section-title {
        font-size: 1.75rem;
    }

    .cta-title {
        font-size: 1.75rem;
    }

    .about-content {
        padding: 0 15px;
    }

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

    .about-item {
        padding: 1.5rem;
    }

    .about-intro {
        font-size: 1rem;
        margin-bottom: 3rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    /* Goals section mobile styles */
    .goals {
        padding: 4rem 0;
    }

    .goals-header .section-title {
        font-size: 2rem;
    }

    .goals-subtitle {
        font-size: 1rem;
    }

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

    .goal-card {
        padding: 2rem;
    }

    .goal-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .goal-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .goal-title {
        font-size: 1.2rem;
    }

    .impact-metrics {
        flex-direction: column;
        gap: 1rem;
    }

    .metric-value {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .container {
        padding: 0 1rem;
    }

    .hero {
        padding-top: 6rem;
    }

    section {
        padding: 3rem 0;
    }

    .goal-card {
        padding: 1.5rem;
    }

    .goals-header .section-title {
        font-size: 1.75rem;
    }
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animated {
    animation: fadeIn 0.8s ease-out forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    position: relative;
}

.arrow {
    font-size: 0.8em;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 4px;
    top: 100%;
    left: 0;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: rgba(8, 101, 134, 0.1);
    color: var(--primary);
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropbtn .arrow {
    transform: rotate(180deg);
}

/* Alternative: More specific selector */
.nav-links .dropdown:hover .arrow {
    transform: rotate(180deg);
}

/* Or with !important if there are conflicting styles */
.dropdown:hover .arrow {
    transform: rotate(180deg) !important;
}

.dropdown:hover .dropbtn {
    background-color: rgba(8, 101, 134, 0.05);
    color: var(--primary);
}
