/* Company section divider for company-list */
.company-list .section-divider {
    border: none;
    border-top: 1.5px solid #d1dbe8;
    margin: 0.7rem 0 0.7rem 0;
}
.contact-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    max-width: 420px;
    margin: 1rem auto 0 auto;
    padding: 0;
    box-sizing: border-box;
}


.tab-section.active .contact-list {
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    position: relative;
}

.contact-list li {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    width: 100%;
    max-width: 360px;
    box-sizing: border-box;
    margin: 0.2rem auto 0 auto;
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

.contact-list li div {
    text-align: left;
}

.contact-list li img {
    min-width: 30px;
    width: 30px;
    height: 30px;
    display: block;
}
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1 0 auto;
    font-family: 'Segoe UI', 'Inter', Arial, sans-serif;
    font-size: 1.18rem;
    padding: 2rem 1.5rem 2.5rem 1.5rem;
    text-align: left;
}

/* Footer Slogan Styles */
.footer-slogan {
    flex-shrink: 0;
    width: 100%;
    text-align: center;
    padding: 1.2rem 0 1.5rem 0;
    font-size: 1.15rem;
    color: #fff; /* Changed to white for contrast */
    font-weight: 600;
    letter-spacing: 0.03em;
    background: #36457b; /* Set background to match header */
}

main h2, main li, main a, main p, main strong {
    font-size: 1.18em;
}
main h2 {
    margin-top: 0rem;
}
header {
    background: #36457b;
    padding-top: 38px;
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.logo {
    margin-top: 0 !important;
}
.business-name {
    text-align: center;
    width: 100%;
    display: block;
}
body {
    font-family: 'Roboto', Arial, sans-serif;
    background: #f4f6fa;
    margin: 0;
    color: #222;
    min-height: 100vh;
    box-sizing: border-box;
}
.tab-nav {
    display: flex;
    justify-content: center;
    background: #36457b;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    position: sticky;
    top: 0;
    z-index: 10;
}
.tab-nav .tab {
    flex: 1;
    padding: 0.8rem 0.5rem;
    background: #36457b;
    border: none;
    outline: none;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    border-radius: 0;
    /* Ensure nav tabs are always centered, both normal and active */
    text-align: center;
    justify-content: center;
    align-items: center;
}
.tab-nav .tab.active {
    background: #fff;
    color: #36457b;
    border-radius: 8px 8px 0 0;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.04);
    text-align: center;
    justify-content: center;
    align-items: center;
    /* merged into the main selector above */
}

main section, main ul {
    width: 100%;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}
.tab-section {
    display: none;
    animation: fadeIn 0.4s;
}
.tab-section.active {
    display: block;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.contact-list, .company-list {
    list-style: none;
    padding: 0;
.contact-list li, .company-list li {
    margin-bottom: 0.7rem;
    font-size: 1.05rem;
}
    margin-bottom: 1.2rem;
}
.contact-list a, .company-list a {
    color: #36457b;
    text-decoration: none;
    word-break: break-all;
}
.social-icons {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
    justify-content: center;
}
.icon svg {
    display: block;
    width: 40px;
    height: 40px;
    transition: transform 0.2s, box-shadow 0.2s;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(54,69,123,0.07);
}
.icon:hover svg {
    transform: scale(1.1) rotate(-3deg);
    box-shadow: 0 4px 16px rgba(54,69,123,0.13);
}
.map-container {
    margin-top: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(54,69,123,0.08);
}
.section-divider {
    border: none;
    border-top: 1.5px solid #d1dbe8;
    margin: 1.5rem 0 1.5rem 0;
}
@media (max-width: 700px) {
    main {
        margin: 16px 4px 0 4px;
        padding: 1.2rem 0.5rem 1.5rem 0.5rem;
        border-radius: 12px;
    }
    .logo {
        width: 120px;
    }
    .business-name {
        font-size: 1.3rem;
    }
}
