body {
    margin: 0;
    padding: 0;
    background-color: black;
    font-family: 'Inter', sans-serif;
    color: white;
}

.page-wrapper {
    width: 95%;
    max-width: 1200px;
    margin: 20px auto;
    background-color: black;
    border: 2px solid #3a015c;
    /* keep purple accent */
    display: flex;
    flex-direction: column;
}

/* header */
.main-header {
    width: 100%;
    background-color: #3a015c;
    border-bottom: 2px solid #220135;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 18px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-family: 'Zen Dots', cursive;
    color: white;
    font-size: 28px;
    margin: 0;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #d9a6ff;
}

/* main */
.main-content {
    display: flex;
    flex-direction: column;
}

/* top cards */
.cards-section {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 40px 30px;
    border-bottom: 2px solid #3a015c;
    flex-wrap: wrap;
}

.info-card {
    width: 320px;
    min-height: 420px;
    background-color: #220135;
    border: 2px solid #3a015c;
    border-radius: 40px;
    padding: 35px 25px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.info-card h2 {
    font-family: 'Zen Dots', cursive;
    color: white;
    margin: 0 0 30px 0;
    font-size: 28px;
}

.info-card p {
    line-height: 1.8;
    font-size: 15px;
    color: #e8e8e8;
    margin: 0 0 40px 0;
}

.card-btn {
    margin-top: auto;
    padding: 10px 24px;
    border: 1px solid #3a015c;
    border-radius: 20px;
    background-color: #190028;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.card-btn:hover {
    background-color: #3a015c;
}

/* form section */
.form-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 40px;
    gap: 30px;
}

.form-left,
.form-right {
    width: 48%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-left h2 {
    font-family: 'Zen Dots', cursive;
    color: white;
    font-size: 30px;
    margin: 0;
}

.contact-form {
    width: 100%;
    max-width: 380px;
    background-color: #220135;
    border: 2px solid #3a015c;
    border-radius: 30px;
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-sizing: border-box;
}

.contact-form label {
    font-size: 14px;
    font-weight: 600;
    color: white;
    text-align: left;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #3a015c;
    border-radius: 14px;
    background-color: #190028;
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    box-sizing: border-box;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #b9a8c7;
}

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    margin-top: 10px;
    padding: 12px 20px;
    border: 1px solid #3a015c;
    border-radius: 20px;
    background-color: #190028;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
}

.submit-btn:hover {
    background-color: #3a015c;
}

/* footer */
.bottom-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 30px;
    border-top: 2px solid #3a015c;
    gap: 20px;
}

.footer-heading {
    width: 200px;
    padding: 10px 20px;
    background-color: #220135;
    border: 1px solid #3a015c;
    border-radius: 20px;
    text-align: center;
    font-weight: 600;
    color: white;
    font-family: 'Zen Dots', cursive;
    box-sizing: border-box;
}

.footer-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.footer-btn {
    padding: 10px 20px;
    border: 1px solid #3a015c;
    border-radius: 20px;
    background-color: #190028;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.footer-btn:hover {
    background-color: #3a015c;
}

.footer-copy {
    color: #bbb;
    font-size: 14px;
    margin-left: auto;
    white-space: nowrap;
}

/* footer */
.main-footer {
    width: 100%;
    background-color: #3a015c;
    padding: 20px 0;
    text-align: center;
    border-top: 2px solid #220135;
}

.main-footer p {
    margin: 0;
    font-size: 14px;
    color: white;
    font-family: 'Inter', sans-serif;
}

/* responsive media */
@media (max-width: 900px) {

    .nav-container,
    .form-section,
    .bottom-bar {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .nav-links,
    .footer-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .form-left,
    .form-right {
        width: 100%;
    }

    .footer-copy {
        margin-left: 0;
    }
}
