* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #ffffff;
    color: #0A2342;
    line-height: 1.6;
}

.logo-img {
    height: 100px;
    width: auto;
    display: inline-block;
    vertical-align: middle;
    margin-right: 1rem;
}

#nav-bar {
    position: sticky;
    top: 0;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 1rem 5%;

    background: #0A2342;
    color: white;

    z-index: 1000;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-links {
    display: flex;
    gap: 2rem;

    list-style: none;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: 0.2s;
}

.nav-links a:hover {
    padding: 0.5rem;
    border-radius: 5px;
    border: none;
}



















#hero {
    min-height: 90vh;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;

    padding: 2rem;
}

#hero-title {
    font-size: 4rem;
    max-width: 900px;

    margin-bottom: 1rem;
}

#hero-subtitle {
    font-size: 1.3rem;
    max-width: 700px;

    margin-bottom: 2rem;
}

.cta-btn {
    background-color: #D4AF37;
    color: #0A2342;

    text-decoration: none;
    font-weight: bold;

    padding: 1rem 2rem;
    border-radius: 8px;

    transition: 0.2s;
}

.cta-btn:hover {
    transform: translateY(-2px);
}

section {
    padding: 6rem 10%;
}

section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

section p {
    max-width: 800px;
}



















#w-c-u {
    text-align: center;
}

#w-c-u h2 {
    margin-top: 5rem;
    margin-bottom: 10rem;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    padding: 2rem;
    border-radius: 12px;
    background: #f5f7fa;
    box-shadow: 0 4px 2px rgba(0, 0, 0, 0);
    transition: 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    transition: 0.2s;
}

.feature-card h3 {
    margin-bottom: 1rem;
}

.feature-card p {
    text-align: center;
}



















#services {
    margin-top: 6rem;
    text-align: center;
    background: #f8f9fc;
    padding-left: 0;
    padding-right: 0;
    
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: 0.2s;
    height: 40rem;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h3 {
    margin-bottom: 1rem;
}

.service-img {
    width: auto;
    display: inline-block;
    vertical-align: middle;
    padding-top: 10px;
}



















#pricing {
    text-align: center;
}

#pricing h2 {
    margin-top: 2rem;
    margin-bottom: 5rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;

    margin-top: 3rem;
}

.price-card {
    background: white;

    padding: 3rem;

    border-radius: 12px;

    box-shadow: 0 4px 12px rgba(0,0,0,0.08);

    transition: 0.2s;

    margin-top: 5rem;
}

.price-card:hover {
    transform: translateY(-5px);
}

.price {
    font-size: 3rem;
    font-weight: bold;

    color: #0A2342;

    margin: 1rem 0;
}

.featured {
    border: 3px solid #D4AF37;
}

.pricing-btn {
    display: inline-block;

    margin-top: 1.5rem;

    padding: 0.8rem 1.5rem;

    background: #D4AF37;
    color: #0A2342;

    text-decoration: none;
    font-weight: bold;

    border-radius: 8px;
}

#special-offer {
    padding: 4rem 10%;
}

.offer-banner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;

    align-items: center;

    background: white;

    border-top: 6px solid #0A2342;
    border-bottom: 6px solid #D4AF37;

    border-radius: 12px;

    padding: 2rem 3rem;

    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.offer-left h2 {
    margin-bottom: 0.5rem;
}

.offer-middle {
    text-align: center;
}

.offer-right {
    text-align: center;
}

.offer-price {
    font-size: 3rem;
    font-weight: bold;
    color: #0A2342;
}



















#about {
    text-align: center;
    background: #f8f9fc;
    margin-top: 5rem;
}

#about h2 {
    margin-bottom: 5rem;
}

.about-content {
    max-width: 900px;
    margin: 3rem auto 0 auto;
}

.about-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}



















#contact {
    background: #0A2342;
    color: white;

    text-align: center;

    padding: 8rem 10%;
}

#contact h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

#contact p {
    max-width: 800px;
    margin: 0 auto 2.5rem auto;

    font-size: 1.2rem;
}

.contact-btn {
    display: inline-block;

    padding: 1rem 2.5rem;

    background: #D4AF37;
    color: #0A2342;

    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;

    border-radius: 10px;

    transition: 0.2s;
}

.contact-btn:hover {
    transform: translateY(-3px);
}

.contact-form {
    max-width: 700px;
    margin: 3rem auto 0 auto;

    text-align: left;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.form-group input,
.form-group select {
    width: 100%;

    padding: 0.9rem;

    border: 1px solid #ccc;
    border-radius: 8px;
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.submit-btn {
    display: block;

    width: 100%;

    text-align: center;

    padding: 1rem;

    background: #D4AF37;
    color: #0A2342;

    text-decoration: none;
    font-weight: bold;

    border-radius: 10px;
}



















@media (max-width: 768px) {
    #navbar {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    #hero-title {
        font-size: 2.5rem;
    }

    #hero-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 900px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .service-grid {
        grid-template-columns: 1fr;
    }
}