body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #ffffff;
    color: #0b2341;
}.site-header {
    background-color: #0b2341;
    color: white;
    padding: 40px 20px;
    text-align: center;
    border-bottom: 4px solid #c99a2e;
}

.site-header h1 {
    margin: 0;
    font-size: 36px;
}

.site-header p {
    margin-top: 10px;
    margin-bottom: 0;
    color: #c99a2e;
    font-weight: bold;
}

.header-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
}

.site-logo {
    width: 130px;
    height: 130px;
    object-fit: cover;
    border-radius: 50%;
    flex-shrink: 0;
}

.header-text {
    text-align: left;
}

.header-text h1 {
    margin: 0;
}

.header-text p {
    margin-top: 10px;
}

main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 25px 20px;
}

.hero {
    text-align: center;
    padding: 60px 20px;
}

.hero h2 {
    font-size: 42px;
    margin: 0;
    color: #0b2341;
}

.hero h3 {
    font-size: 28px;
    margin: 10px 0 20px;
    color: #c99a2e;
}

.hero p {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 18px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.button {
    display: inline-block;
    padding: 14px 24px;
    background-color: #0b2341;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border: 2px solid #0b2341;
    border-radius: 6px;
}

.button-outline {
    background-color: white;
    color: #0b2341;
}

.services {
    padding: 60px 20px;
    text-align: center;
    border-top: 1px solid #e5e5e5;
}

.services h2 {
    font-size: 32px;
    color: #0b2341;
    margin-top: 0;
    margin-bottom: 10px;
}

.section-intro {
    font-size: 18px;
    margin-bottom: 35px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-card {
    padding: 25px;
    border: 1px solid #dddddd;
    border-radius: 8px;
    text-align: left;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.service-card h3 {
    color: #0b2341;
    margin-top: 0;
    margin-bottom: 10px;
}

.service-card p {
    line-height: 1.5;
    margin-bottom: 0;
}

@media (max-width: 768px) {

    .site-header {
        padding: 30px 15px;
    }
.header-content {
    flex-direction: column;
    gap: 12px;
    text-align: center;
}

.site-logo {
    width: 105px;
    height: 105px;
}

.header-text {
    text-align: center;
}

.site-header h1 {
    font-size: 26px;
    line-height: 1.2;
}

.site-header p {
    font-size: 14px;
    margin-top: 6px;
}


    main {
        padding: 20px 15px;
    }

    .hero {
        padding: 40px 10px;
    }

    .hero h2 {
        font-size: 34px;
    }

    .hero h3 {
        font-size: 24px;
    }

    .hero p {
        font-size: 16px;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .services {
        padding: 40px 10px;
    }

    .services h2 {
        font-size: 28px;
    }

}

/* Pricing Section */

.pricing {
    padding: 60px 20px;
    border-top: 1px solid #dddddd;
}

.pricing h2 {
    text-align: center;
    font-size: 32px;
    color: #0b2341;
    margin-bottom: 10px;
}

.pricing .section-intro {
    text-align: center;
    margin-bottom: 30px;
}

.pricing-box {
    max-width: 700px;
    margin: 0 auto;
    border: 1px solid #dddddd;
    border-radius: 8px;
    overflow: hidden;
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.pricing-box h3 {
    margin: 0;
    padding: 18px 20px;
    background-color: #0b2341;
    color: #ffffff;
    font-size: 18px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 16px 20px;
    border-bottom: 1px solid #eeeeee;
}

.price-row strong {
    color: #0b2341;
    white-space: nowrap;
}

.pricing-note {
    max-width: 700px;
    margin: 20px auto 0;
    text-align: center;
    font-size: 14px;
    color: #555555;
}

.service-area {
    text-align: center;
    padding: 60px 20px;
    border-top: 1px solid #e0e0e0;
}

.service-area h2 {
    font-size: 32px;
    color: #0b2341;
    margin-top: 0;
    margin-bottom: 20px;
}

.service-area p {
    max-width: 750px;
    margin: 0 auto 18px;
    font-size: 17px;
    line-height: 1.6;
}

.service-area-highlight {
    display: inline-block;
    margin-top: 15px;
    padding: 15px 25px;
    background-color: #0b2341;
    color: #c99a2e;
    font-weight: bold;
    border-radius: 6px;
}

.contact {
    text-align: center;
    padding: 60px 20px;
    background-color: #0b2341;
    color: white;
}

.contact h2 {
    font-size: 32px;
    margin-top: 0;
    margin-bottom: 15px;
    color: white;
}

.contact > p {
    max-width: 650px;
    margin: 0 auto 30px;
    font-size: 17px;
    line-height: 1.6;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.contact .button {
    background-color: #c99a2e;
    color: #0b2341;
    border-color: #c99a2e;
}

.contact .button:hover {
    background-color: white;
    border-color: white;
}

.contact .button-outline {
    background-color: transparent;
    color: white;
    border-color: white;
}

.contact .button-outline:hover {
    background-color: white;
    color: #0b2341;
}

.contact-details {
    margin-top: 25px;
}

.contact-details p {
    margin: 8px 0;
    font-size: 15px;
}

.site-footer {
    background-color: #071a30;
    color: white;
    text-align: center;
    padding: 35px 20px;
    border-top: 4px solid #c99a2e;
}

.site-footer p {
    margin: 7px 0;
}

.site-footer a {
    color: #c99a2e;
    font-weight: bold;
    text-decoration: none;
}

.site-footer a:hover {
    text-decoration: underline;
}

.footer-disclaimer {
    margin-top: 20px !important;
    font-size: 13px;
    color: #d6d6d6;
}

.copyright {
    margin-top: 15px !important;
    font-size: 12px;
    color: #aaaaaa;
}