

body {
    margin: 0;
    font-family: 'Gotham';
    background-color: #fff;
    color: #000000;
    line-height: 1.6;
    text-align: center;
}


/* Header Section */
.hero {
    background-color: #FBA41F;
    color: #fff;
    padding: 15px 0;
}


.logo-text h1 {
    margin: 0;
    font-size: 2.2rem;
}

.logo-text h2 {
    margin: 0.2rem 0;
    font-size: 1.5rem;
}

.tagline {
    font-size: 0.9rem;
}

/* Image Section */
.main-image img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
    display: block;
}


/* Content Section */
.content {
    max-width: 1024px;
    margin: 4rem auto !important;
    padding: 0 1.5rem;
    text-align: justify;
}

.content h3 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    font-weight: bolder;
    text-align: center;
}


.content p {
    margin-bottom: 1.2rem;
    font-size: 1.2rem;
    font-weight: 300;
    text-align: left;
}

/* Footer Section */
footer {
    /* background-color: #000000; */
    background: #000;
    color: #f1ece0;
    padding: 0.1rem 1rem;
    padding-bottom: 2em;
}

footer p {
    margin-bottom: 1rem;
    font-size: 2rem;
    font-weight: 800;
    text-align: center;
    color: #fff;
}

footer a {
    color: #fff;
    text-decoration: none;
    padding: 0 40px;
}

.social-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* Group icons together */
.social-icons {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: #f1ece0;
    text-decoration: none;
    font-size: 2rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #d4cba4;
}

.social-links .phon,
.social-links[href^="mailto"] {
    font-weight: bold;
}

/* Desktop / larger screens */
@media (min-width: 600px) {
    .social-links {
        justify-content: center;
        gap: 15rem;
    }

    .logo {
        max-width: 280px;
    }
}

@media (max-width: 767px) {
    .content {
        margin: 2rem 0rem 4rem 0rem;
    }
    p.footer-address {
    margin-bottom: 0px;
    }
    .content p,
    .tab-content p {
        font-size: 16px;
        text-align: left;
    }
    footer.footer p {
    margin-top: 0px;
    }
    footer.footer {
    padding: 40px 15px;
    }

    .tab {
        flex: 100% !important;
    }

    footer p {
        font-size: 1.2rem;
    }

    .social-links a {
        font-size: 1.5rem;
    }

    .content h3 {
        font-size: 30px;
        margin-top: 0px !important;
        line-height: 36px;
    }

    footer a {
        display: block;
    }

    .content {
        margin: 50px auto 40px !important;
    }

    .logo {
        max-width: 180px !important;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {

    .content {

        margin: 3rem 1rem 3rem 1rem;

    }

    .tab {
        min-width: auto !important;
    }
}

.tabs-container {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 20px;
}

.tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 20px;
}

.tab {
    flex: 1;
    padding: 12px 15px;
    border: none;
    background: #FBA41F;
    color: white;
    text-align: center;
    cursor: pointer;
    border-radius: 6px;
    transition: 0.3s;
    font-size: 16px;
    min-width: 150px;
    font-family: 'Gotham';
    text-transform: uppercase;
}

.tab:hover {
    background: #000;
}

.tab.active {
    background: #000000;
}

.tab-content {
    display: none;
    padding: 20px 30px;
    background: #f6f6f6;
    border-radius: 8px;
    line-height: 1.6;
    font-size: 1.2rem;
    font-weight: 300;
}

.tab-content.active {
    display: block;
}

.footer-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.footer-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    color: #000;
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-btn i {
    font-size: 18px;
}

.footer-btn:hover {
    background: #e5e5e5;
}

.footer-address {
    margin-top: 10px;
    line-height: 1.6;
    font-size: 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .tab {
        font-size: 16px;
    }
}