
@font-face {
    font-family: 'Avenir';
    src: url('https://fonts.cdnfonts.com/css/avenir') format('woff2');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8fafc;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Avenir', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: #00497C;
}

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

/* Hero Styles */
.hero {
    height: 100vh;  
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;

}


.hero-bg {
    position: absolute;
    inset: 0;
    background-color: rgba(0,0,0,0.5);
    z-index: 10;
}

.hero-content {
    position: relative;
    z-index: 20;
    max-width: 800px;
    padding: 0 1rem;
}

/* Section Styles */
.section {
    padding: 5rem 0;
}

.section-white {
    background-color: white;
}

.section-gray {
    background-color: #f1f5f9;
}

.section-primary {
    background-color: #CF0A2C;
    color: white;
}

.section-secondary {
    background-color: #00497C;
    color: white;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background-color: #CF0A2C;
    color: white;
}

.btn-primary:hover {
    background-color: #B00825;
}

.btn-secondary {
    background-color: #00497C;
    color: white;
}

.btn-secondary:hover {
    background-color: #00375C;
}

.btn-white {
    background-color: white;
    color: #00497C;
}

.btn-white:hover {
    background-color: #f1f1f1;
}

/* Card Styles */
.card {
    background: white;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* Grid Layouts */
.grid {
    display: grid;
    gap: 1.5rem;
}

.grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* Flex Utilities */
.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

/* Text Styles */
.text-center {
    text-align: center;
}

.text-primary {
    color: #CF0A2C;
}

.text-secondary {
    color: #00497C;
}

/* Responsive Breakpoints */
@media (max-width: 768px) {
    .grid-cols-2,
    .grid-cols-3,
    .grid-cols-4 {
        grid-template-columns: 1fr;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
}
