* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Georgia, 'Times New Roman', Times, serif;
    line-height: 1.6;
    color: #333;
}


/* Hero Section */

.hero {
    background: #004071;
    color: #fff;
    /* padding: 80px 20px; */
    text-align: center;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 30px;
    font-weight: 300;
    letter-spacing: 2px;
}

.locations {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
    cursor: pointer;
}

.locations a {
    text-decoration: none;
    color: inherit;
}

.location {
    padding: 15px 30px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.location:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}

.tagline {
    font-size: 1.3rem;
    margin-top: 20px;
    font-style: italic;
    opacity: 0.9;
}


/* Services Section */

.services {
    background-color: #fff;
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #004071;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.cards a {
    text-decoration: none;
    color: inherit;
}

.card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(10, 31, 68, 0.15);
    border-color: #004071;
}

.card h3 {
    color: #004071;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.card p {
    color: #666;
    line-height: 1.6;
}


/* Offices Section */

.offices {
    background: #f8f9fa;
    padding: 80px 20px;
}

.offices h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #004071;
}

.office-item {
    max-width: 1200px;
    margin: 0 auto 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.office-item.reverse {
    direction: rtl;
}

.office-item.reverse > * {
    direction: ltr;
}

.office-info {
    padding: 20px;
}

.office-info h3 {
    color: #004071;
    font-size: 2rem;
    margin-bottom: 20px;
}

.office-info .address {
    color: #666;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.office-info .description {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.office-info .phone {
    color: #004071;
    font-weight: bold;
    font-size: 1.1rem;
}

.map-container {
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}


/* Contact Section */

.contact {
    background-color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.contact h2 {
    color: #004071;
    margin-bottom: 20px;
    font-size: 2rem;
}

.contact p {
    font-size: 1.1rem;
    color: #666;
}

.cta-button {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 40px;
    background: #004071;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1rem;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: #1a3a6b;
}


/* Footer */

footer {
    background: #004071;
    color: #fff;
    padding: 50px 20px 30px;
}

.footer {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h4 {
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive-ness */

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .locations {
        gap: 20px;
    }

    .location {
        font-size: 1rem;
        padding: 10px 20px;
    }

    .office-item {
        grid-template-columns: 1fr;
    }

    .office-item.reverse {
        direction: ltr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}