@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

    --cream: #faf4db;
}

body {
    font-family: 'Poppins', sans-serif;
    background: url('background.png') no-repeat center center fixed;
    background-size: cover;
    min-height: 100vh;
    color: white;
    line-height: 1.6;
}

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    height: 40px;
    top: -40px;
    left: 6px;
    background: var(--cream);
    color: #0b2040;
    padding: 8px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
    z-index: 1000;
    transition: top 0.3s;
    border: 0;
}

.skip-link:focus {
    top: 6px;
}

h1,
h2,
h3 {
  color: var(--cream);
}

p {
  color: #fff;
}

/* Container */
.container {
    max-width: 1460px;
    margin: 0 auto;
    padding: 60px 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Main Header Section */
.main-header {
    text-align: center;
    margin-bottom: 80px;
}

.main-logo {
    height: auto;
    margin-bottom: 80px;
    max-width: 100%;
}

.main-title {
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
    font-size: 1.5em;
}

.main-subtitle {
    font-size: 2em;
    font-weight: 700;
    color: var(--cream);
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    width: 100%;
    max-width: 1420px;
}

/* Content Boxes */
.content-box {
    background: #1c2f4c;
    padding: 50px;
  }

.box-logo-wrapper {
    height: 91px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    margin-bottom: 40px;
}

.box-logo {
    height: auto;
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.box-title {
    font-size: 2em;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--cream);
}

.box-description {
    font-size: 1em;
    line-height: 1.8;
    margin-bottom: 35px;
    color: #fff;
}

/* Call-to-Action Button */
.cta-button {
    display: inline-block;
    background: var(--cream);
    color: #0b2040;
    text-decoration: none;
    padding: 10px 30px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1em;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: #fff;

}

.cta-button:active {
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 40px 15px;
        max-width: 100%;
    }
    
    .main-header {
        margin-bottom: 60px;
    }
    
    .main-logo {
        margin-bottom: 60px;
    }
    
    .main-title {
        font-size: 1.3em;
    }
    
    .main-subtitle {
        font-size: 1.8em;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .content-box {
        padding: 40px 30px;
    }
    
    .box-logo-wrapper {
        height: 91px;
        margin-bottom: 30px;
    }
    
    .box-title {
        font-size: 1.8em;
        margin-bottom: 25px;
    }
    
    .box-description {
        font-size: 0.95em;
        line-height: 1.7;
        margin-bottom: 30px;
    }
    
    .cta-button {
        padding: 10px 25px;
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 30px 10px;
    }
    
    .main-header {
        margin-bottom: 50px;
    }
    
    .main-logo {
        margin-bottom: 50px;
    }
    
    .main-title {
        font-size: 1.2em;
    }
    
    .main-subtitle {
        font-size: 1.6em;
    }
    
    .content-box {
        padding: 30px 20px;
    }
    
    .box-logo-wrapper {
        height: 91px;
        margin-bottom: 25px;
    }
    
    .box-title {
        font-size: 1.6em;
        margin-bottom: 20px;
    }
    
    .box-description {
        font-size: 0.9em;
        line-height: 1.6;
        margin-bottom: 25px;
    }
    
    .cta-button {
        padding: 10px 20px;
        font-size: 0.85em;
    }
} 