body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #FFFBFE, #F7EEF9);
    color: #4A4A4A;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 700px;
    margin: 40px auto;
    background: #ffffff;
    padding: 20px 25px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.banner {
    width: 100%;
    height: auto;
    border-radius: 8px 8px 0 0;
    display: block;
    margin-bottom: 15px;
}

.form-label {
    font-weight: 500;
    margin-bottom: 8px;
}

.form-select,
.form-control {
    border-radius: 6px;
    transition: all 0.2s ease-in-out;
    color: #4A4A4A;
}

    .form-control::placeholder,
    .form-select option[value=""],
    .form-select:invalid {
        color: #888 !important;
    }

    .form-control:focus,
    .form-select:focus {
        border-color: #c9066e;
        box-shadow: 0 0 6px rgba(30, 185, 170, 0.4);
    }

.section-title {
    text-align: right;
    font-weight: 700;
    color: #a83696;
    font-size: 15px;
    margin-top: 25px;
    margin-bottom: 10px;
    text-transform: uppercase;
    border-top: 2px solid #a83696;
    padding-top: 10px;
    letter-spacing: 0.5px;
}

.button-container .btn {
    background: #a83696;
    color: white;
    font-weight: 600;
    border: none;
    padding: 10px 25px;
    border-radius: 30px;
    transition: all 0.3s;
}

    .button-container .btn:hover {
        background: #1E1E1C;
        transform: scale(1.05);
    }

.post-button-content {
    text-align: center;
    margin-top: 25px;
}

    .post-button-content h5 {
        font-weight: 700;
        color: #1E1E1C;
        margin-bottom: 8px;
    }

.footer {
    font-size: 12px;
    color: #fff;
    text-align: center;
    margin-top: 25px;
    background: #23272A;
    padding: 10px 8px;
    border-radius: 0 0 10px 10px;
    line-height: 1.3;
}

    .footer h5 {
        font-weight: 600;
        margin-bottom: 3px;
        font-size: 14px;
        color: #a83696;
    }

    .footer p {
        margin: 2px 0;
    }

    .footer .contact-item {
        margin: 2px 0;
    }

        .footer .contact-item i {
            font-size: 16px;
            color: #a83696;
            margin-right: 6px;
        }

    .footer a {
        color: #a83696;
        text-decoration: none;
        font-size: 13px;
    }

/* Responsive */
@media (max-width: 576px) {
    .container {
        padding: 15px;
    }

    .button-container .btn {
        width: 100%;
    }

    .section-title {
        font-size: 14px;
        text-align: left;
    }
}
