:root {
    --primary: #1A2A3A;
    --secondary: #2E5E7E;
    --accent: #4A90E2;
    --light: #F9FBFD;
    --text: #333333;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', system-ui, sans-serif;
}

body {
    color: var(--text);
    line-height: 1.6;
    background: #fff;
}

.navbar {
    background: var(--primary);
    padding: 1rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--accent);
}

.lang-switcher {
    background: var(--secondary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: 0.3s;
    text-decoration: none;
}

.hero {
    padding: 150px 5% 100px;
    background: url('bg.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
    position: relative;
}

.hero-inner {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-button {
    background: var(--accent);
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: 0.3s;
    display: inline-block;
    text-decoration: none;
    margin-top: 0;
}

.cta-button:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

.section {
    padding: 5rem 5%;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--primary);
}

/* Ensure all images under Services and Investments have a max width of 315px */
.card img {
    display: block;
    margin: 0 auto 1rem;
    max-width: 315px;
    height: auto;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Adjust card appearance if needed */
.card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
    text-align: center; /* Ensure center alignment for the images */
}

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

.card h3 {
    color: var(--secondary);
    margin-bottom: 1rem;
}

.address-map-contact {
    display: flex;
    gap: 2rem;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.column {
    flex: 1;
    background: var(--light);
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    margin: 0px;
}

.map iframe {
    border-radius: 8px;
    margin-top: 1rem;
    width: 100%;
    height: 350px;
    border: none;
}

.contact-form-container input,
.contact-form-container textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 1.5rem;
}

.contact-form-container button {
    background: var(--accent);
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form-container button:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

.footer {
    background: var(--primary);
    color: white;
    text-align: center;
    padding: 2rem 5%;
    margin-top: 3rem;
}

.footer-image {
    max-height: 150px;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem 2%;
    }

    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .address-map-contact {
        flex-direction: column;
        padding: 2rem 5%;
    }

    .column {
        width: 100%;
        margin-bottom: 2rem;
    }

    .contact-form-container {
        padding: 1.5rem;
    }
}
