/*************************************************
 GLOBAL
*************************************************/
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f4f6f8;
}

/*************************************************
 HEADER
*************************************************/
.header {
    background: #1f3a5f;
    color: white;
    text-align: center;
    padding: 25px 20px;
}

.header h1 {
    margin: 0;
}

.header p {
    margin-top: 5px;
    font-size: 14px;
}

/*************************************************
 FORM SECTION
*************************************************/
.demo-contact {
    padding: 50px 20px;
    text-align: center;
}

.demo-contact h2 {
    margin-bottom: 10px;
}

.demo-note {
    color: #666;
    font-size: 14px;
    margin-bottom: 25px;
}

/*************************************************
 FORM CONTAINER (THIS IS THE IMPORTANT PART)
*************************************************/
.contact-form {
    max-width: 550px;
    margin: auto;
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    text-align: left;
}

/*************************************************
 FORM ELEMENTS
*************************************************/
.contact-form label {
    margin-bottom: 6px;
    font-weight: bold;
    font-size: 14px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    margin-bottom: 18px;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    width: 100%;
    box-sizing: border-box;
}

.contact-form textarea {
    min-height: 100px;
    resize: vertical;
}

/*************************************************
 PAGE OPTIONS BOX (BUY PLAN)
*************************************************/
#page-options {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 15px;
}

/*************************************************
 PRICE DISPLAY
*************************************************/
#price-display {
    background: #e9f7ef;
    border: 1px solid #28a745;
    padding: 12px;
    border-radius: 6px;
    text-align: center;
    font-size: 15px;
}

/*************************************************
 BUTTON
*************************************************/
.cta {
    background: #28a745;
    color: white;
    padding: 14px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    text-align: center;
}

.cta:hover {
    background: #218838;
}

/*************************************************
 MOBILE
*************************************************/
@media (max-width: 768px) {

    .contact-form {
        padding: 25px 20px;
    }

    .header {
        padding: 20px;
    }
}