/* =========================================================
   AZZA ACCOUNTS & TAX INC.
   Professional Website Styles
========================================================= */


/* =========================================================
   GENERAL
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #172b5c;
    background-color: #ffffff;
    line-height: 1.6;
}

body.popup-open {
    overflow: hidden;
}

a {
    transition: 0.3s ease;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 12px 6%;

    background-color: #ffffff;

    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.logo-area img {
    width: 250px;
    height: auto;
    display: block;
}

.navigation {
    display: flex;
    align-items: center;
    gap: 30px;
}

.navigation a {
    position: relative;

    color: #173c88;
    text-decoration: none;

    font-weight: 600;
    font-size: 15px;

    padding: 8px 0;
}

.navigation a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: 0;

    width: 0;
    height: 2px;

    background-color: #4169b2;

    transition: 0.3s ease;
}

.navigation a:hover {
    color: #4169b2;
}

.navigation a:hover::after {
    width: 100%;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    min-height: 78vh;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    padding: 90px 20px;

    background:
        linear-gradient(
            rgba(16, 39, 91, 0.94),
            rgba(39, 82, 160, 0.90)
        );
}

.hero-content {
    max-width: 900px;
}

.welcome-text {
    color: #b9d4ff;

    font-size: 15px;
    font-weight: bold;

    letter-spacing: 2px;

    margin-bottom: 18px;
}

.hero h1 {
    color: #ffffff;

    font-size: 52px;
    line-height: 1.2;

    margin-bottom: 25px;
}

.hero-description {
    max-width: 720px;

    margin: 0 auto 35px;

    color: #e8efff;

    font-size: 20px;
}

.hero-buttons {
    display: flex;

    justify-content: center;

    gap: 15px;

    flex-wrap: wrap;
}

.btn {
    display: inline-block;

    padding: 14px 30px;

    border-radius: 6px;

    text-decoration: none;

    font-weight: bold;

    transition: 0.3s ease;
}

.primary-btn {
    background-color: #ffffff;
    color: #173c88;
}

.primary-btn:hover {
    background-color: #dce7ff;

    transform: translateY(-2px);
}

.secondary-btn {
    border: 2px solid #ffffff;

    color: #ffffff;
}

.secondary-btn:hover {
    background-color: #ffffff;

    color: #173c88;

    transform: translateY(-2px);
}

.whatsapp-btn {
    background-color: #25D366;

    color: #ffffff;
}

.whatsapp-btn:hover {
    background-color: #1ebe5d;

    transform: translateY(-2px);
}

.trust-message {
    margin-top: 30px;

    color: #d9e6ff;

    font-size: 15px;

    font-style: italic;
}


/* =========================================================
   SECTION COMMON STYLES
========================================================= */

.section-label {
    color: #4169b2;

    font-size: 14px;

    font-weight: bold;

    letter-spacing: 2px;

    margin-bottom: 10px;
}

.about h2,
.services h2,
.contact h2,
.faq h2,
.why-choose h2 {
    color: #173c88;

    font-size: 36px;

    margin-bottom: 20px;
}


/* =========================================================
   ABOUT US
========================================================= */

.about {
    padding: 90px 7%;

    text-align: center;

    background-color: #ffffff;
}

.about-content {
    width: 100%;
    max-width: 1100px;

    margin: auto;
}

.about-intro {
    max-width: 850px;

    margin: 0 auto 50px;

    color: #666666;

    font-size: 18px;
}

.about-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;

    align-items: stretch;
}

.about-card {
    display: flex;

    flex-direction: column;

    height: 100%;
}

.about-card {
    padding: 35px 25px;

    background-color: #f4f7fc;

    border-radius: 10px;

    transition: 0.3s ease;

    display: flex;

    flex-direction: column;

    height: 100%;
}
.about-card:hover {
    transform: translateY(-6px);

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.10);
}

.about-icon {
    width: 55px;
    height: 55px;

    margin: 0 auto 20px;

    display: flex;

    align-items: center;
    justify-content: center;

    background-color: #173c88;

    color: #ffffff;

    border-radius: 50%;

    font-size: 24px;
}

.about-card h3 {
    color: #173c88;

    font-size: 22px;

    margin-bottom: 12px;
}

.about-card p {
    color: #666666;

    font-size: 15px;
}

.values-section {
    width: 100%;
    max-width: 1100px;

    margin: 70px auto 0;

    text-align: center;
}

.values-container {
    width: 100%;
    max-width: 1100px;

    margin: 25px auto 0;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 25px;

    justify-content: center;

    align-items: stretch;
}

.value-item {
    width: 100%;
    min-height: 180px;

    padding: 25px 20px;

    border-top: 3px solid #173c88;

    background-color: #ffffff;

    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);

    text-align: center;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;
}

.value-item strong {
    display: block;

    color: #173c88;

    font-size: 18px;

    margin-bottom: 8px;
}

.value-item span {
    color: #666666;

    font-size: 14px;
}


/* =========================================================
   WHY CHOOSE AZZA
========================================================= */

.why-choose {
    padding: 90px 7%;

    background-color: #ffffff;

    text-align: center;
}

.why-content {
    max-width: 1100px;

    margin: auto;
}

.why-intro {
    max-width: 800px;

    margin: 0 auto 45px;

    color: #666666;

    font-size: 18px;
}

.why-container {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
}

.why-card {
    padding: 30px 20px;

    background-color: #f4f7fc;

    border-radius: 10px;

    transition: 0.3s ease;
}

.why-card:hover {
    transform: translateY(-6px);

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.10);
}

.why-icon {
    width: 45px;
    height: 45px;

    margin: 0 auto 18px;

    display: flex;

    align-items: center;
    justify-content: center;

    background-color: #173c88;

    color: #ffffff;

    border-radius: 50%;

    font-size: 22px;

    font-weight: bold;
}

.why-card h3 {
    color: #173c88;

    margin-bottom: 10px;

    font-size: 20px;
}

.why-card p {
    color: #666666;

    font-size: 15px;
}


/* =========================================================
   SERVICES
========================================================= */

.services {
    padding: 90px 7%;

    text-align: center;

    background-color: #f4f7fc;
}

.services-intro {
    max-width: 800px;

    margin: 0 auto 45px;

    color: #666666;

    font-size: 18px;
}

.service-container {
    max-width: 1200px;

    margin: auto;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;
}

.service-card {
    background-color: #ffffff;

    padding: 35px 25px;

    border-radius: 10px;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);

    transition: 0.3s ease;
}

.service-card:hover {
    transform: translateY(-7px);

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.service-icon {
    width: 55px;
    height: 55px;

    margin: 0 auto 20px;

    display: flex;

    align-items: center;
    justify-content: center;

    background-color: #173c88;

    color: #ffffff;

    border-radius: 12px;

    font-size: 25px;

    font-weight: bold;
}

.service-card h3 {
    color: #173c88;

    margin-bottom: 12px;

    font-size: 22px;
}

.service-card p {
    color: #666666;

    font-size: 15px;
}

.service-card a {
    display: inline-block;

    margin-top: 18px;

    color: #173c88;

    text-decoration: none;

    font-weight: bold;
}

.service-card a:hover {
    color: #4169b2;

    transform: translateX(3px);
}


/* =========================================================
   SERVICE POPUP
========================================================= */

.service-popup {
    position: fixed;

    inset: 0;

    z-index: 5000;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 20px;

    opacity: 0;

    visibility: hidden;

    transition: 0.3s ease;
}

.service-popup.active {
    opacity: 1;

    visibility: visible;
}

.service-popup-overlay {
    position: absolute;

    inset: 0;

    background-color: rgba(7, 25, 61, 0.75);

    backdrop-filter: blur(4px);
}

.service-popup-box {
    position: relative;

    z-index: 2;

    width: 100%;

    max-width: 600px;

    padding: 45px 40px;

    background-color: #ffffff;

    border-radius: 14px;

    text-align: center;

    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);

    transform: translateY(25px) scale(0.96);

    transition: 0.3s ease;
}

.service-popup.active .service-popup-box {
    transform: translateY(0) scale(1);
}

.service-popup-close {
    position: absolute;

    top: 15px;
    right: 20px;

    width: 40px;
    height: 40px;

    border: none;

    background: transparent;

    color: #173c88;

    font-size: 32px;

    cursor: pointer;
}

.service-popup-icon {
    width: 65px;
    height: 65px;

    margin: 0 auto 20px;

    display: flex;

    align-items: center;
    justify-content: center;

    background-color: #173c88;

    color: #ffffff;

    border-radius: 50%;

    font-size: 28px;

    font-weight: bold;
}

.service-popup-title {
    color: #173c88;

    font-size: 30px;

    margin-bottom: 18px;
}

.service-popup-text {
    color: #555555;

    font-size: 16px;

    line-height: 1.8;

    margin-bottom: 30px;
}

.service-popup-buttons {
    display: flex;

    justify-content: center;

    gap: 12px;

    flex-wrap: wrap;
}

.popup-contact-btn,
.popup-close-btn {
    padding: 12px 25px;

    border-radius: 6px;

    font-weight: bold;

    text-decoration: none;

    cursor: pointer;

    transition: 0.3s ease;
}

.popup-contact-btn {
    background-color: #173c88;

    color: #ffffff;
}

.popup-contact-btn:hover {
    background-color: #4169b2;

    transform: translateY(-2px);
}

.popup-close-btn {
    background-color: #eef2f8;

    color: #173c88;

    border: none;
}

.popup-close-btn:hover {
    background-color: #dce5f5;
}


/* =========================================================
   FAQ
========================================================= */

.faq {
    padding: 90px 7%;

    background-color: #f4f7fc;
}

.faq-content {
    max-width: 900px;

    margin: auto;

    text-align: center;
}

.faq-intro {
    max-width: 700px;

    margin: 0 auto 40px;

    color: #666666;

    font-size: 18px;
}

.faq-container {
    text-align: left;
}

.faq-item {
    background-color: #ffffff;

    margin-bottom: 12px;

    border-radius: 8px;

    border: 1px solid #e0e6f0;

    overflow: hidden;

    transition: 0.3s ease;
}

.faq-item:hover {
    border-color: #4169b2;
}

.faq-item summary {
    padding: 20px 25px;

    color: #173c88;

    font-size: 17px;

    font-weight: bold;

    cursor: pointer;

    list-style: none;

    position: relative;

    padding-right: 50px;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";

    position: absolute;

    right: 25px;

    font-size: 24px;

    font-weight: normal;
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-item p {
    padding: 0 25px 22px;

    color: #666666;

    line-height: 1.7;

    font-size: 15px;
}


/* =========================================================
   CONTACT
========================================================= */

.contact {
    padding: 90px 7%;

    background-color: #ffffff;
}

.contact-content {
    max-width: 1100px;

    margin: auto;

    text-align: center;
}

.contact-intro {
    max-width: 750px;

    margin: 0 auto 50px;

    color: #666666;

    font-size: 18px;
}

.contact-container {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 40px;

    text-align: left;
}

.contact-info {
    background-color: #ffffff;

    padding: 35px;

    border-radius: 12px;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-item {
    display: flex;

    align-items: flex-start;

    gap: 20px;

    padding: 20px 0;

    border-bottom: 1px solid #e5e9f2;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-icon {
    width: 48px;
    height: 48px;

    min-width: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    background-color: #173c88;

    color: #ffffff;

    border-radius: 10px;

    font-size: 21px;
}

.contact-item h3 {
    color: #173c88;

    margin-bottom: 6px;
}

.contact-item a {
    display: inline-block;

    color: #173c88;

    text-decoration: none;

    margin: 3px 0;

    font-weight: 600;
}

.contact-separator {
    display: inline-block;

    font-weight: bold;

    color: #173c88;

    margin: 0 8px;
}

.contact-item a:hover {
    color: #4169b2;

    text-decoration: underline;
}

.contact-item p {
    color: #666666;

    line-height: 1.7;
}

.contact-separator {
    font-weight: bold;

    color: #173c88;

    margin: 0 6px;
}

.location-link {
    margin-top: 8px;
}

.contact-cta {
    background-color: #f4f7fc;

    padding: 45px;

    border-radius: 12px;

    color: #173c88;

    display: flex;

    flex-direction: column;

    justify-content: center;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-cta h3 {
    font-size: 30px;

    line-height: 1.3;

    margin-bottom: 18px;
}

.contact-cta p {
    color: #555555;

    font-size: 17px;

    margin-bottom: 30px;
}

.contact-buttons {
    display: flex;

    flex-direction: column;

    gap: 12px;
}

.contact-btn {
    display: block;

    text-align: center;

    padding: 13px 20px;

    border-radius: 6px;

    text-decoration: none;

    font-weight: bold;

    transition: 0.3s ease;
}

.call-btn {
    background-color: #173c88;

    color: #ffffff;
}

.whatsapp-contact-btn {
    background-color: #25D366;

    color: #ffffff;
}

.email-btn {
    background-color: #ffffff;

    border: 2px solid #173c88;

    color: #173c88;
}

.contact-btn:hover {
    transform: translateY(-2px);
}


/* =========================================================
   CLIENT ENQUIRY FORM
========================================================= */

.enquiry-form {
    max-width: 900px;

    margin: 70px auto 0;

    padding: 45px;

    background-color: #ffffff;

    border-radius: 12px;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);

    text-align: left;
}

.enquiry-form h2 {
    text-align: center;

    color: #173c88;

    font-size: 32px;

    margin-bottom: 15px;
}

.form-intro {
    text-align: center;

    max-width: 650px;

    margin: 0 auto 35px;

    color: #666666;
}

.form-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 20px;
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;

    margin-bottom: 8px;

    color: #173c88;

    font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    padding: 13px 15px;

    border: 1px solid #ccd5e5;

    border-radius: 6px;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 15px;

    color: #333333;

    background-color: #ffffff;

    outline: none;

    transition: 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #4169b2;

    box-shadow:
        0 0 0 3px rgba(65, 105, 178, 0.12);
}

.form-group textarea {
    resize: vertical;
}

.privacy-consent {
    margin: 10px 0 25px;

    padding: 18px;

    background-color: #f4f7fc;

    border-radius: 8px;

    border-left: 4px solid #173c88;
}

.consent-label {
    display: flex;

    align-items: flex-start;

    gap: 10px;

    color: #444444;

    font-size: 14px;

    line-height: 1.5;

    cursor: pointer;
}

.consent-label input {
    width: 18px;
    height: 18px;

    margin-top: 2px;

    accent-color: #173c88;

    cursor: pointer;

    flex-shrink: 0;
}

.privacy-note {
    margin: 10px 0 0 28px;

    color: #777777;

    font-size: 13px;
}

.submit-btn {
    width: 100%;

    padding: 14px;

    border: none;

    border-radius: 6px;

    background-color: #173c88;

    color: #ffffff;

    font-size: 16px;

    font-weight: bold;

    cursor: pointer;

    transition: 0.3s ease;
}

.submit-btn:hover {
    background-color: #4169b2;

    transform: translateY(-2px);
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    background-color: #10275b;

    color: #ffffff;

    padding: 45px 20px;

    text-align: center;
}

.site-footer p {
    font-size: 14px;

    color: #dce7ff;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .about-grid {
        grid-template-columns: 1fr;
    }

    .values-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .site-header {
        flex-direction: column;

        gap: 12px;

        padding: 12px 5%;
    }

    .logo-area img {
        width: 145px;
    }

    .navigation {
        gap: 15px;

        flex-wrap: wrap;

        justify-content: center;
    }

    .navigation a {
        font-size: 14px;
    }

    .hero {
        min-height: 80vh;

        padding: 70px 20px;
    }

    .hero h1 {
        font-size: 38px;
    }

    .hero-description {
        font-size: 18px;
    }

    .about,
    .services,
    .contact,
    .faq,
    .why-choose {
        padding: 65px 6%;
    }

    .about h2,
    .services h2,
    .contact h2,
    .faq h2,
    .why-choose h2 {
        font-size: 30px;
    }

    .values-container,
    .why-container,
    .service-container {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;

        gap: 0;
    }

    .enquiry-form {
        padding: 30px 20px;
    }

    .contact-info,
    .contact-cta {
        padding: 30px 25px;
    }

    .contact-cta h3 {
        font-size: 25px;
    }

    .service-popup-box {
        padding: 40px 25px;
    }

    .service-popup-title {
        font-size: 25px;
    }

    .service-popup-text {
        font-size: 15px;
    }

}


/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 400px) {

    .logo-area img {
        widh: 200px;
    }

    .navigation {
        gap: 10px;
    }

    .navigation a {
        font-size: 13px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

}

/* =========================================================
   PROFESSIONAL FOOTER
========================================================= */

.site-footer {
    background-color: #10275b;

    color: #ffffff;

    padding: 65px 7% 0;
}

.footer-container {
    max-width: 1200px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        1.5fr
        1fr
        1.2fr
        1.5fr;

    gap: 45px;

    padding-bottom: 50px;
}


/* COMPANY */


.footer-company p {
    max-width: 320px;

    color: #dce7ff;

    font-size: 14px;

    line-height: 1.8;
}

.footer-social {
    margin-top: 20px;
}

.footer-social a {
    display: inline-block;

    padding: 9px 18px;

    border: 1px solid #4169b2;

    border-radius: 5px;

    color: #ffffff;

    text-decoration: none;

    font-size: 14px;

    font-weight: bold;
}

.footer-social a:hover {
    background-color: #ffffff;

    color: #173c88;
}


/* FOOTER HEADINGS */

.footer-column h3 {
    color: #ffffff;

    font-size: 18px;

    margin-bottom: 20px;
}

.footer-column h3::after {
    content: "";

    display: block;

    width: 35px;

    height: 2px;

    margin-top: 8px;

    background-color: #4169b2;
}


/* FOOTER LISTS */

.footer-column ul {
    list-style: none;

    padding: 0;

    margin: 0;
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-column li a {
    color: #dce7ff;

    text-decoration: none;

    font-size: 14px;
}

.footer-column li a:hover {
    color: #ffffff;

    padding-left: 4px;
}


/* FOOTER CONTACT */

.footer-contact p {
    color: #dce7ff;

    font-size: 14px;

    line-height: 1.7;

    margin-bottom: 18px;
}

.footer-contact strong {
    color: #ffffff;
}

.footer-contact a {
    color: #dce7ff;

    text-decoration: none;
}

.footer-contact a:hover {
    color: #ffffff;

    text-decoration: underline;
}

.footer-separator {
    color: #ffffff;

    font-weight: bold;

    margin: 0 7px;
}

.footer-location-link {
    display: inline-block;

    margin-top: -5px;

    color: #ffffff !important;

    font-weight: bold;

    text-decoration: none !important;
}

.footer-location-link:hover {
    color: #b9d4ff !important;
}


/* FOOTER BOTTOM */

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);

    padding: 22px 0;
}

.footer-bottom-content {
    max-width: 1200px;

    margin: auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;
}

.footer-bottom p {
    color: #dce7ff;

    font-size: 13px;

    margin: 0;
}

.footer-legal {
    display: flex;

    align-items: center;

    gap: 10px;
}

.footer-legal a {
    color: #dce7ff;

    text-decoration: none;

    font-size: 13px;
}

.footer-legal a:hover {
    color: #ffffff;

    text-decoration: underline;
}

.footer-legal span {
    color: #6f89bb;
}


/* =========================================================
   FOOTER TABLET
========================================================= */

@media (max-width: 900px) {

    .footer-container {
        grid-template-columns: repeat(2, 1fr);

        gap: 40px;
    }

}


/* =========================================================
   FOOTER MOBILE
========================================================= */

@media (max-width: 700px) {

    .site-footer {
        padding: 50px 7% 0;
    }

    .footer-container {
        grid-template-columns: 1fr;

        gap: 35px;

        padding-bottom: 40px;
    }


    .footer-company p {
        max-width: none;
    }

    .footer-bottom-content {
        flex-direction: column;

        text-align: center;

        gap: 12px;
    }

    .footer-legal {
        justify-content: center;

        flex-wrap: wrap;
    }

}


/* =========================================================
   FOOTER SMALL PHONES
========================================================= */

@media (max-width: 400px) {

    .footer-container {
        gap: 30px;
    }


    .footer-contact p {
        font-size: 13px;
    }

    .footer-bottom p,
    .footer-legal a {
        font-size: 12px;
    }

}

/* =========================================================
LEGAL PAGES
========================================================= */

.legal-page {
padding: 90px 7%;

```
background-color: #f4f7fc;
```

}

.legal-content {
max-width: 950px;

```
margin: 0 auto;

padding: 55px;

background-color: #ffffff;

border-radius: 12px;

box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);

text-align: left;
```

}

.legal-content > .section-label {
text-align: center;
}

.legal-content > h1 {
color: #173c88;

```
font-size: 42px;

text-align: center;

margin-bottom: 20px;
```

}

.legal-intro {
max-width: 750px;

```
margin: 0 auto 20px;

color: #666666;

font-size: 17px;

line-height: 1.8;

text-align: center;
```

}

.last-updated {
text-align: center;

```
color: #777777;

font-size: 14px;

margin-bottom: 45px;
```

}

.legal-section {
margin-bottom: 35px;
}

.legal-section h2 {
color: #173c88;

```
font-size: 23px;

margin-bottom: 12px;
```

}

.legal-section p {
color: #555555;

```
font-size: 15px;

line-height: 1.8;

margin-bottom: 14px;
```

}

.legal-section ul {
margin: 10px 0 18px 25px;

```
color: #555555;
```

}

.legal-section li {
margin-bottom: 8px;

```
font-size: 15px;

line-height: 1.7;
```

}

.legal-contact {
margin-top: 20px;

```
padding: 25px;

background-color: #f4f7fc;

border-left: 4px solid #173c88;

border-radius: 6px;
```

}

.legal-contact p {
margin-bottom: 12px;
}

.legal-contact p:last-child {
margin-bottom: 0;
}

.legal-contact a {
color: #173c88;

```
text-decoration: none;

font-weight: 600;
```

}

.legal-contact a:hover {
color: #4169b2;

```
text-decoration: underline;
```

}

.legal-navigation {
display: flex;

```
justify-content: center;

gap: 15px;

flex-wrap: wrap;

margin-top: 45px;

padding-top: 30px;

border-top: 1px solid #e0e6f0;
```

}

.legal-btn {
display: inline-block;

```
padding: 12px 22px;

background-color: #173c88;

color: #ffffff;

border-radius: 6px;

text-decoration: none;

font-weight: bold;

transition: 0.3s ease;
```

}

.legal-btn:hover {
background-color: #4169b2;

```
transform: translateY(-2px);
```

}

/* =========================================================
LEGAL PAGES - MOBILE
========================================================= */

@media (max-width: 700px) {

```
.legal-page {
    padding: 60px 5%;
}

.legal-content {
    padding: 35px 25px;
}

.legal-content > h1 {
    font-size: 32px;
}

.legal-intro {
    font-size: 16px;
}

.legal-section h2 {
    font-size: 21px;
}

.legal-section p,
.legal-section li {
    font-size: 14px;
}

.legal-contact {
    padding: 20px;
}

.legal-navigation {
    flex-direction: column;
}

.legal-btn {
    width: 100%;

    text-align: center;
}
```

}
