* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    color: #222;
    background: #f7f7f7;
    line-height: 1.6;
}

.container {
    width: min(1100px, calc(100% - 40px));
    margin: 0 auto;
}

.hero {
    background: white;
    color: #222;
    text-align: center;
    padding: 70px 20px 60px;
}

.logo {
    width: 150px;
    height: 150px;
    object-fit: contain;
    margin-bottom: 20px;
}

.hero h1 {
    margin: 0;
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.15;
}

.tagline {
    margin: 15px auto 0;
    max-width: 650px;
    font-size: 1.15rem;
    opacity: 0.9;
}

.section {
    padding: 55px 0;
}

.section h2 {
    text-align: center;
    margin: 0 0 25px;
    font-size: 2rem;
}

.section > .container > p {
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.contact-section {
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 25px;
}

.card {
    background: #f7f7f7;
    border-radius: 12px;
    padding: 30px;
}

.card h2 {
    text-align: left;
    font-size: 1.5rem;
}

address {
    font-style: normal;
    margin-bottom: 25px;
}

a {
    color: #2563eb;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.map-wrapper {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    background: #ddd;
}

.map-wrapper iframe {
    display: block;
    width: 100%;
    min-height: 400px;
}

.social-section {
    background: white;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.social-links a {
    display: inline-block;
    padding: 10px 18px;
    border: 1px solid #d1d5db;
    border-radius: 999px;
    background: #fff;
}

.social-links a:hover {
    background: #f3f4f6;
    text-decoration: none;
}

footer {
    background: #111827;
    color: #d1d5db;
    text-align: center;
    padding: 25px 0;
    font-size: 0.9rem;
}

@media (max-width: 700px) {
    .container {
        width: min(100% - 28px, 1100px);
    }

    .hero {
        padding: 50px 15px 45px;
    }

    .logo {
        width: 120px;
        height: 120px;
    }

    .section {
        padding: 40px 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .map-wrapper iframe {
        min-height: 350px;
    }
}
