* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f5f8fc;
    color: #1a1a1a;
    line-height: 1.6;
}

/* HEADER */

header {
    background: #062b5c;
    color: white;
    padding: 20px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    font-size: 28px;
}

nav a {
    color: white;
    text-decoration: none;
    margin-left: 25px;
    font-weight: bold;
}

nav a:hover {
    color: #4da6ff;
}

/* HERO */

.hero {
    min-height: 600px;
    padding: 120px 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background: linear-gradient(
            135deg,
            #062b5c,
            #0a4f9c
    );
    color: white;
}

.hero h2 {
    font-size: 56px;
    max-width: 700px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 21px;
    max-width: 650px;
    margin-bottom: 35px;
}

.button {
    display: inline-block;
    background: white;
    color: #062b5c;
    padding: 14px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.button:hover {
    background: #4da6ff;
    color: white;
}

/* GENERAL SECTIONS */

section {
    padding: 80px 8%;
}

section h2 {
    font-size: 36px;
    color: #062b5c;
    margin-bottom: 20px;
}

/* FOOTER */

footer {
    background: #031b3a;
    color: white;
    text-align: center;
    padding: 30px;
    margin-top: 0;
}

/* MOBILE */

@media (max-width: 768px) {

    header {
        flex-direction: column;
        gap: 15px;
    }

    nav a {
        margin: 0 8px;
    }

    .hero {
        padding: 80px 6%;
    }

    .hero h2 {
        font-size: 40px;
    }

    .hero p {
        font-size: 18px;
    }

    /* SERVICES */
    .services {
        background: white;
        text-align: center;
    }

    .service-container {
        display: flex;
        justify-content: center;
        gap: 25px;
        margin-top: 40px;
        flex-wrap: wrap;
    }

    .service-card {
        background: #f5f8fc;
        padding: 30px;
        width: 300px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    }

    .service-card h3 {
        color: #062b5c;
        margin-bottom: 15px;
    }


    /* PRICING */
    .pricing {
        text-align: center;
        background: #f5f8fc;
    }

    .pricing-container {
        display: flex;
        justify-content: center;
        gap: 25px;
        margin-top: 40px;
        flex-wrap: wrap;
    }

    .price-card {
        background: white;
        padding: 35px;
        width: 310px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    }

    .price-card h3 {
        color: #062b5c;
        font-size: 25px;
    }

    .price-card h4 {
        font-size: 32px;
        margin: 15px 0;
        color: #0a4f9c;
    }

    .price-card ul {
        list-style: none;
        margin: 25px 0;
    }

    .price-card li {
        margin: 10px 0;
    }

    .featured {
        border: 3px solid #0a4f9c;
        transform: scale(1.03);
    }

    /* CONTACT */
    .contact {
        background: white;
        text-align: center;
        min-height: 600px;
    }

    .contact-container {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        gap: 50px;
        margin-top: 40px;
        flex-wrap: wrap;
    }

    .contact-info,
    .contact-form {
        background: #f5f8fc;
        padding: 35px;
        width: 400px;
        border-radius: 10px;
        text-align: left;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    }

    .contact-info h3,
    .contact-form h3 {
        color: #062b5c;
        margin-bottom: 20px;
    }

    .contact-info p {
        margin: 15px 0;
    }

    .contact-form form {
        display: flex;
        flex-direction: column;
    }

    .contact-form label {
        margin-top: 15px;
        margin-bottom: 5px;
        font-weight: bold;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 12px;
        border: 1px solid #ccc;
        border-radius: 5px;
        font-family: Arial, sans-serif;
        font-size: 15px;
    }

    .contact-form button {
        margin-top: 25px;
        padding: 14px;
        border: none;
        border-radius: 5px;
        background: #062b5c;
        color: white;
        font-size: 16px;
        font-weight: bold;
        cursor: pointer;
    }

    .contact-form button:hover {
        background: #0a4f9c;
    }

    /* SERVICES PAGE */
    .services-page {
        background: white;
        text-align: center;
        min-height: 700px;
    }

    .services-page > p {
        max-width: 700px;
        margin: 0 auto 40px;
    }

    .service-card h4 {
        color: #0a4f9c;
        margin-top: 20px;
        font-size: 18px;
    }

    .services-cta {
        margin-top: 70px;
        padding: 50px;
        background: #062b5c;
        color: white;
        border-radius: 10px;
    }

    .services-cta h2 {
        color: white;
    }

    .services-cta p {
        margin-bottom: 25px;
    }

    /* ABOUT PAGE */
    .about-page {
        background: white;
        text-align: center;
        min-height: 700px;
    }

    .about-intro {
        max-width: 750px;
        margin: 0 auto 50px;
        font-size: 19px;
    }

    .about-container {
        display: flex;
        justify-content: center;
        gap: 25px;
        flex-wrap: wrap;
    }

    .about-card {
        background: #f5f8fc;
        width: 300px;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    }

    .about-card h3 {
        color: #062b5c;
        margin-bottom: 15px;
    }

    .founder-section {
        margin-top: 80px;
        padding: 60px 20px;
        background: #f5f8fc;
    }

    .founder-section h2 {
        margin-bottom: 20px;
    }

    .founder-section h3 {
        font-size: 28px;
        color: #062b5c;
    }

    .founder-section p {
        max-width: 650px;
        margin: 10px auto;
    }

    .about-cta {
        margin-top: 60px;
        padding: 60px 20px;
        background: #062b5c;
        color: white;
        border-radius: 10px;
    }

    .about-cta h2 {
        color: white;
    }

    .about-cta p {
        max-width: 650px;
        margin: 0 auto 25px;
    }

    .whatsapp-button {
        position: fixed;
        right: 25px;
        bottom: 25px;
        background: #25D366;
        color: white;
        padding: 14px 20px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: bold;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        z-index: 9999;
    }
}
