/* GAC Theme Colors */
:root {
    --gac-blue: #003c71;
    --gac-light-blue: #0082ca;
    --gac-dark-blue: #002950;
    --gac-orange: #ff7900;
    --gac-light-gray: #f5f5f5;
    --gac-medium-gray: #e0e0e0;
    --gac-dark-gray: #333333;
    --gac-white: #ffffff;
}

/* Global Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--gac-dark-gray);
    line-height: 1.6;
}

a {
    color: var(--gac-light-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

    a:hover {
        color: var(--gac-blue);
        text-decoration: underline;
    }

.btn-primary {
    background-color: var(--gac-blue);
    border-color: var(--gac-blue);
}

    .btn-primary:hover, .btn-primary:focus {
        background-color: var(--gac-dark-blue);
        border-color: var(--gac-dark-blue);
    }

.page-title {
    color: var(--gac-blue);
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.5rem;
}

    .page-title:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 50px;
        height: 3px;
        background-color: var(--gac-orange);
    }

/* Header Styles */
.gac-header {
    background-color: var(--gac-white);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo-container {
    max-width: 150px;
}

.logo {
    max-width: 100%;
    height: auto;
}

.main-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav li {
    margin-left: 1.5rem;
}

.main-nav a {
    color: var(--gac-dark-gray);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

    .main-nav a:hover, .main-nav a.active {
        color: var(--gac-blue);
        text-decoration: none;
    }

        .main-nav a.active:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: var(--gac-orange);
        }

/* Footer Styles */
.gac-footer {
    background-color: var(--gac-blue);
    color: var(--gac-white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.footer-logo {
    flex: 0 0 200px;
    margin-bottom: 1.5rem;
}

.footer-contact, .footer-links {
    flex: 1;
    min-width: 200px;
    margin-bottom: 1.5rem;
}

    .footer-links ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-links li {
        margin-bottom: 0.5rem;
    }

    .footer-links a {
        color: var(--gac-white);
        opacity: 0.8;
    }

        .footer-links a:hover {
            opacity: 1;
            text-decoration: none;
        }

.footer-content h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.copyright {
    text-align: center;
    font-size: 0.875rem;
    opacity: 0.7;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1rem;
}

/* Hero Section */
.hero-section {
    background: url('gac-background.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--gac-white);
    padding: 8rem 0 6rem;
    margin-top: 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
    position: relative;
}

.hero-content {
    transform: translateY(-40%);
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--gac-dark-blue);
}

.hero-content .lead {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: var(--gac-dark-blue);
}

/* Features Section */
.features-section {
    padding: 2rem 0;
}

.feature-box {
    padding: 1.5rem;
    background-color: var(--gac-light-gray);
    border-radius: 8px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

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

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

.feature-box h3 {
    color: var(--gac-blue);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

/* Process Steps */
.process-steps {
    position: relative;
}

    .process-steps:before {
        content: '';
        position: absolute;
        top: 24px;
        left: 15px;
        height: calc(100% - 48px);
        width: 2px;
        background-color: var(--gac-medium-gray);
    }

.process-step {
    display: flex;
    margin-bottom: 2rem;
    position: relative;
}

.step-number {
    width: 32px;
    height: 32px;
    background-color: var(--gac-blue);
    color: var(--gac-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 1rem;
    z-index: 1;
}

.step-content {
    padding-left: 0.5rem;
}

    .step-content h4 {
        color: var(--gac-blue);
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

/* CTA Section */
.cta-section {
    padding: 3rem 0;
    background-color: var(--gac-light-gray);
    border-radius: 8px;
    margin-bottom: 3rem;
}

/* Whistleblower Form */
.whistleblower-form {
    padding: 2rem 0;
}

.form-introduction {
    /*background-color: var(--gac-light-gray);*/
    background-color: rgba(0, 60, 113, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.form-section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--gac-medium-gray);
}

    .form-section h2 {
        color: var(--gac-blue);
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

.section-note {
    font-style: italic;
    color: #666;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-control {
    border-radius: 4px;
    border: 1px solid var(--gac-medium-gray);
    padding: 0.625rem;
}

    .form-control:focus {
        border-color: var(--gac-light-blue);
        box-shadow: 0 0 0 0.2rem rgba(0, 130, 202, 0.25);
    }

.confidentiality-notice {
    background-color: rgba(0, 60, 113, 0.1);
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.consent-checkbox {
    display: flex;
    align-items: flex-start;
}

    .consent-checkbox input {
        margin-top: 0.3rem;
        margin-right: 0.5rem;
    }

.form-actions {
    margin-top: 2rem;
}

/* About Page */
.about-section {
    margin-bottom: 2rem;
}

    .about-section h2 {
        color: var(--gac-blue);
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

.principle-card {
    background-color: var(--gac-light-gray);
    padding: 1.5rem;
    border-radius: 8px;
    height: 100%;
}

    .principle-card h3 {
        color: var(--gac-blue);
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }

.validation-message {
    color: #dc3545; /* Bootstrap red color */
    margin-top: 0.25rem;
    display: block;
    font-size: 0.875rem;
}
/* Responsive Styles */
@media (max-width: 768px) {
    .main-nav ul {
        flex-direction: column;
    }

    .main-nav li {
        margin-left: 0;
        margin-bottom: 0.5rem;
    }

    .gac-header .container {
        flex-direction: column;
    }

    .logo-container {
        margin-bottom: 1rem;
    }

    .footer-content {
        flex-direction: column;
    }

    .hero-content h1 {
        font-size: 2rem;
    }
}
