/* Global Vars and Resets */
:root {
    /* Baseline AIG Core colors */
    --aig-core-blue: #001871;
    --aig-dark-blue: #001149;
    --aig-cobalt: #1352DE;
    --aig-dark-gray: #343741;
    --aig-pale-gray: #DCDCDC; 
    --aig-white: #FFFFFF;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Font Declarations */
@font-face {
    font-family: 'Jost';
    src: url('../fonts/Jost-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Jost';
    src: url('../fonts/Jost-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Source Sans';
    src: url('../fonts/SourceSans3-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

/* Base Styles */
body {
    font-family: 'Source Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--aig-dark-gray);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    line-height: 1.6;
}

h1 {
    font-family: 'Jost', 'Arial Black', sans-serif;
    color: var(--aig-core-blue);
    font-weight: 700;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: var(--aig-core-blue);
    padding: 20px 0;
}

header .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    height: 50px;
    width: auto;
    display: block;
}

/* Main Content */
main {
    flex: 1; /* Pushes footer down */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    background-color: #F5F5F5;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
}

.icon {
    width: 150px;
    height: auto;
    margin-bottom: 30px;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

p {
    font-size: 1.1rem;
    margin-bottom: 32px;
    color: var(--aig-dark-gray);
}

/* Button */
.btn {
    display: inline-block;
    background-color: var(--aig-core-blue);
    color: var(--aig-white);
    padding: 14px 36px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Source Sans', sans-serif;
    transition: background-color 0.3s ease;
    border: 2px solid var(--aig-core-blue);
}

.btn:hover {
    background-color: var(--aig-cobalt);
    border-color: var(--aig-cobalt);
}

/* Footer */
footer {
    background-color: var(--aig-core-blue);
    color: var(--aig-white);
    padding: 24px 0;
    font-size: 0.85rem;
}

footer .container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

footer p {
    color: var(--aig-white);
    margin: 0;
}

.mobile-break {
    display: none;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-links a {
    color: var(--aig-white);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.footer-links .separator {
    color: var(--aig-white);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .logo {
        height: 40px;
    }
    
    h1 {
        font-size: 1.75rem;
    }

    .icon {
        width: 100px;
    }
    
    main {
        padding: 40px 20px;
    }
    
    p {
        font-size: 1rem;
    }
    
    .btn {
        padding: 12px 28px;
        font-size: 0.95rem;
    }
    
    footer {
        font-size: 0.75rem;
        padding: 20px 0;
    }
    
    footer .container {
        padding: 0 15px;
    }
    
    .footer-content {
        gap: 10px;
    }
    
    footer p {
        font-size: 0.75rem;
        text-align: center;
        line-height: 1.5;
    }
    
    .mobile-break {
        display: inline;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 6px;
        font-size: 0.8rem;
    }
    
    .footer-links .separator {
        display: none;
    }
}
