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

body {
    font-family: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #ffffff;
    color: #334155;
    line-height: 1.55;
}

.page {
    min-height: 100vh;
    max-width: 1100px;
    margin: 0 auto;
    padding: 24px 16px 32px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

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

.logo {
    display: flex;
    align-items: center;
}
.logo-img {
    max-width: 280px;
    height: auto;
    display: block;
}

h1 {
    font-size: 28px;
    font-weight: 600;
    color: #0f172a;
}

.tagline {
    font-size: 14px;
    color: #475569;
}


.badge {
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid #d8dee6;
    font-size: 14px;
    background: #ffffff;
    color: #0f172a;
    box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}

.main {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.intro {
    background: #ffffff;
    border-radius: 20px;
    padding: 24px 20px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}

.intro h2 {
    font-size: 18px;
    margin-bottom: 36px;
    color: #0f172a;
}

.intro p {
    font-size: 15px;
    color: #475569;
    margin-bottom: 8px;
}

.contact {
    list-style: none;
    padding: 0;
    margin: 12px 0 4px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 17px;
}
.contact li { display: flex; align-items: center; gap: 4px; }
.contact .label { font-weight: 600; color: #0f172a; }
.contact a {
    text-decoration: none;
    color: #22c55e;
    font-weight: 500;
    transition: color .15s ease;
}
.contact a:hover { color: #16a34a; text-decoration: underline; }

.highlight {
    margin-top: 4px;
    font-weight: 600;
    color: #0f172a;
}

.brands {
    background: #ffffff;
    border-radius: 20px;
    padding: 22px 18px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
}

.brands h3,
.map-section h3 {
    font-size: 18px;
    margin-bottom: 14px;
    color: #0f172a;
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
    align-items: center;
    justify-items: center;
}

.brand-item {
    background: transparent;
    padding: 0;
    border-radius: 0;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-item img {
    max-width: 100%;
    max-height: 85px;
    object-fit: contain;
    opacity: 0.7;
    transition: opacity .2s ease, transform .2s ease;
}
.brand-item img:hover {
    opacity: 1;
    transform: scale(1.08);
}

.brand-note {
    margin-top: 12px;
    font-size: 13px;
    color: #475569;
}

.map-section {
    background: #ffffff;
    border-radius: 20px;
    padding: 22px 18px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
}

.map-section p {
    font-size: 14px;
    color: #475569;
    margin-bottom: 12px;
}

.map-container {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #dbe3eb;
    aspect-ratio: 16 / 6;
    background: #f8fafc;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.footer {
    border-top: 1px solid #d0d7e2;
    padding-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 13px;
    color: #64748b;
    text-align: center;
}

.company-block h4 {
    font-size: 13px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 4px;
}

.company-block p {
    margin-bottom: 2px;
}

.footer-note {
    margin-top: 4px;
    font-size: 12px;
    color: #64748b;
}

@media (max-width: 640px) {
    .page {
        padding: 20px 14px 28px;
    }

    h1 {
        font-size: 22px;
    }

    .logo-img { max-width: 220px; }

    .contact { font-size: 14px; gap: 6px 16px; }

    .intro {
        padding: 18px 16px;
    }

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

@media (min-width: 900px) {
    .main {
        display: grid;
        grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
        gap: 24px;
    }

    .brands,
    .map-section {
        height: 100%;
    }

    .brands,
    .map-section {
        margin-top: 0;
        grid-column: 1 / -1;
    }
}
