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

html {
    scroll-behavior: smooth;
    -webkit-scroll-behavior: smooth;
    scrollbar-gutter: stable;
}


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

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

a {
    text-decoration: none;
    color: #0066cc;
    transition: color 0.3s ease;
}

a:hover {
    color: #004d99;
}

ul {
    list-style: none;
}

/* Header styles */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.logo a {
    font-size: 28px;
    font-weight: 700;
    color: #002b5c;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}


.footer-logo h4 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}



nav ul {
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: #333;
    font-weight: 500;
    position: relative;
}

nav ul li a.active,
nav ul li a:hover {
    color: #002b5c;
}

nav ul li a.active:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #002b5c;
}

.search-icon {
    cursor: pointer;
    color: #333;
}

/* Hero section */
.hero {
    background-color: #f5f5f5;
    padding: 80px 0;
    text-align: center;
}

.hero-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.hero-logo img {
    width: 100%;
    height: auto;
    max-width: 400px;
}


.hero h1 {
    font-size: 56px;
    font-weight: 700;
    color: #002b5c;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero .subtitle {
    font-size: 24px;
    font-weight: 400;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

/* Featured insights */
.featured-insights {
    padding: 80px 0;
}

.insight-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.insight-card.primary {
    display: flex;
    margin-bottom: 40px;
}

.insight-content {
    padding: 40px;
    flex: 1;
}

.insight-image {
    flex: 1;
    min-height: 400px;
}

.insight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.insight-card h2 {
    font-size: 32px;
    font-weight: 700;
    color: #002b5c;
    margin-bottom: 20px;
    line-height: 1.3;
}

.insight-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #002b5c;
    margin-bottom: 15px;
    line-height: 1.3;
}

.insight-card p {
    margin-bottom: 25px;
    color: #555;
}

.btn-arrow {
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.btn-arrow:after {
    content: 'â†’';
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.btn-arrow:hover:after {
    transform: translateX(5px);
}

/* Insights grid */
.insights-grid {
    padding: 40px 0 80px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Featured content */
.featured-content {
    background-color: #f5f5f5;
    padding: 80px 0;
}

.content-block h2 {
    font-size: 36px;
    font-weight: 700;
    color: #002b5c;
    margin-bottom: 40px;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.content-card {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.content-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #002b5c;
    margin-bottom: 15px;
}

/* CTA section */
.cta-section {
    padding: 100px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #002b5c;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto 30px;
    color: #555;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    background-color: #002b5c;
    color: #fff;
    padding: 15px 30px;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #001f42;
    color: #fff;
}

/* Footer */
footer {
    background-color: #002b5c;
    color: #fff;
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-col p {
    color: #ccc;
    margin-bottom: 20px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #ccc;
}

.footer-col ul li a:hover {
    color: #fff;
}

.contact-info li {
    color: #ccc;
    margin-bottom: 10px;
}

.contact-info li a {
    color: #ccc;
}

.contact-info li a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: #ccc;
}

.footer-links a {
    color: #ccc;
    margin-left: 20px;
}

.footer-links a:hover {
    color: #fff;
}

/* About page specific styles */
.page-header {
    background-color: #f5f5f5;
    padding: 80px 0;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 700;
    color: #002b5c;
    margin-bottom: 20px;
}

.page-header p {
    font-size: 20px;
    max-width: 700px;
    color: #555;
}

.about-section {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #002b5c;
    margin-bottom: 30px;
}

.about-content p {
    margin-bottom: 20px;
    color: #555;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.values-section {
    background-color: #f5f5f5;
    padding: 80px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-card {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.value-icon {
    font-size: 40px;
    color: #002b5c;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #002b5c;
    margin-bottom: 15px;
}

.services-section {
    padding: 80px 0;
}

.service-card {
    display: flex;
    margin-bottom: 60px;
    align-items: center;
}

.service-card:last-child {
    margin-bottom: 0;
}

.service-icon {
    font-size: 40px;
    color: #002b5c;
    margin-right: 30px;
}

.service-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: #002b5c;
    margin-bottom: 15px;
}

/* Gallery styles */
.gallery-section {
    padding: 80px 0;
}

.gallery-intro {
    margin-bottom: 60px;
    text-align: center;
}

.gallery-intro h2 {
    font-size: 36px;
    font-weight: 700;
    color: #002b5c;
    margin-bottom: 20px;
}

.gallery-intro p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
    color: #555;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.gallery-item {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-image {
    height: 240px;
    overflow: hidden;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.05);
}

.gallery-caption {
    padding: 20px;
}

.gallery-caption h3 {
    font-size: 20px;
    font-weight: 600;
    color: #002b5c;
    margin-bottom: 10px;
}

.gallery-caption p {
    font-size: 14px;
    color: #555;
}

.gallery-credit {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.gallery-credit p {
    font-size: 14px;
    color: #777;
}

/* Responsive styles */
@media (max-width: 992px) {
    .grid, .content-grid, .values-grid, .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .insight-card.primary {
        flex-direction: column;
    }
    
    .insight-image {
        min-height: 300px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
    }
    
    nav ul {
        margin-top: 20px;
    }
    
    nav ul li {
        margin-left: 15px;
        margin-right: 15px;
    }
    
    .hero h1 {
        font-size: 40px;
    }
    
    .hero .subtitle {
        font-size: 20px;
    }
    
    .grid, .content-grid, .values-grid, .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        margin-top: 20px;
    }
    
    .footer-links a {
        margin: 0 10px;
    }
    
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Legal page styles */
.legal-section {
    padding: 80px 0;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-item {
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid #eee;
}

.legal-item:last-child {
    border-bottom: none;
}

.legal-item h2 {
    font-size: 32px;
    font-weight: 700;
    color: #002b5c;
    margin-bottom: 20px;
}

.legal-item h3 {
    font-size: 24px;
    font-weight: 600;
    color: #002b5c;
    margin: 30px 0 15px;
}

.legal-item p {
    margin-bottom: 15px;
    color: #555;
    line-height: 1.7;
}

.legal-item ul {
    margin: 15px 0;
    padding-left: 20px;
}

.legal-item ul li {
    list-style: disc;
    margin-bottom: 10px;
    color: #555;
}

/* Contact links styling */
.contact-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.contact-links .btn-primary {
    margin: 5px;
}
