/* =========================
   GENERAL STYLES
========================= */

:root {
    --purple: #8e50e4;
    --light-purple: #d4b1ff;
    --lilac: #d5bbf4;
    --dark-purple: #3f3155;
    --white: #FFFFFF;
    --soft-purple: #e7d1ff;
}

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

body {
    font-family: Arial, sans-serif;
    background-color: var(--light-purple);
    color: var(--dark-purple);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}


/* =========================
   NAVIGATION
========================= */

header {
    background-color: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(63, 49, 85, 0.08);
}

.navbar {
    max-width: 1200px;
    margin: auto;
    padding: 18px 30px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;

    font-size: 28px;
    font-weight: bold;
    color: var(--dark-purple);
}

.logo img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-links a {
    font-size: 15px;
    font-weight: 600;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--purple);
}

/* =========================
   FOOTER
========================= */

footer {
    background-color: var(--dark-purple);
    color: var(--white);
    padding: 60px 30px;
    text-align: center;
}

.footer-content {
    max-width: 900px;
    margin: auto;
}

.footer-content h2 {
    margin-bottom: 5px;
}

.footer-links {
    margin: 25px 0;
    display: flex;
    justify-content: center;
    gap: 25px;
}

.footer-links a:hover {
    color: var(--lilac);
}

.copyright {
    font-size: 13px;
    opacity: 0.7;
}

/* =========================
   PAGE HEADER
========================= */
.page-header {
    background: linear-gradient(
        135deg,
        var(--purple),
        var(--lilac)
    );
    text-align: center;
    padding: 100px 20px;
    color: var(--white);
}

.page-header .section-label {
    color: var(--white);
}

.page-header h1 {
    font-size: 55px;
    margin-bottom: 15px;
}

.page-header p:last-child {
    max-width: 700px;
    margin: auto;
    font-size: 18px;
}

/* =========================
   CONTACT SECTION
========================= */
.contact-section {
    background-color: var(--white);
    padding: 100px 30px;
}

.contact-container {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* =========================
   CONTACT INFORMATION
========================= */
.contact-info h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.contact-info > p:not(.section-label) {
    color: #665b72;
    font-size: 17px;
    margin-bottom: 35px;
}

.section-label {
    color: var(--purple);
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

/* =========================
   CONTACT DETAILS
========================= */
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px;
    background-color: var(--soft-purple);
    border-radius: 15px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    border-radius: 12px;
    font-size: 22px;
}

.contact-item h3 {
    font-size: 17px;
    margin-bottom: 2px;
}

.contact-item p {
    color: #665b72;
    font-size: 14px;
}

/* =========================
   CONTACT FORM
========================= */
.contact-form {
    background-color: var(--soft-purple);
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 5px 20px rgba(63, 49, 85, 0.08);
}

.contact-form h2 {
    font-size: 28px;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 7px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 13px 15px;
    border: 2px solid transparent;
    border-radius: 10px;
    background-color: var(--white);
    color: var(--dark-purple);
    font-family: Arial, sans-serif;
    font-size: 15px;
    outline: none;
    transition: 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--purple);
}

.form-group textarea {
    resize: vertical;
}

.button {
    display: inline-block;
    border: none;
    background-color: var(--purple);
    color: var(--white);
    padding: 13px 30px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s;
}

.button:hover {
    background-color: var(--dark-purple);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(63, 49, 85, 0.2);
}

/* =========================
   QUESTIONS SECTION
========================= */
.questions-section {
    background-color: var(--light-purple);
    padding: 100px 30px;
    text-align: center;
}

.section-content {
    max-width: 800px;
    margin: auto;
}

.section-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.section-content p:not(.section-label) {
    color: #665b72;
    font-size: 17px;
    margin-bottom: 30px;
}

/* =========================
   TABLET
========================= */

@media (max-width: 800px) {

    .navbar {
        flex-direction: column;

        gap: 15px;
    }

    .nav-links {
        flex-wrap: wrap;

        justify-content: center;

        gap: 15px;
    }

    .page-header h1 {
        font-size: 42px;
    }

    .contact-container {
        grid-template-columns: 1fr;

        gap: 40px;
    }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 550px) {

    .page-header {
        padding: 80px 20px;
    }

    .page-header h1 {
        font-size: 35px;
    }

    .contact-section,
    .questions-section {
        padding: 80px 20px;
    }

    .contact-info h2,
    .section-content h2 {
        font-size: 30px;
    }

    .contact-form {
        padding: 25px;
    }

    .footer-links {
        flex-wrap: wrap;

        gap: 15px;
    }

}

