/*
 Theme Name: Astra Pilates Child
 Template: astra
*/

/* ... (existing styles) ... */

.contact-page-content-area {
    display: flex;
    justify-content: space-around;
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-section,
.contact-form-section {
    flex: 1;
    padding: 20px;
}

.contact-info-section {
    text-align: center;
}

.contact-quote p {
    font-size: 1.5em;
    margin-bottom: 20px;
    color: #6a4f41; /* Adjust color to match image */
}

.contact-details p {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    color: #6a4f41; /* Adjust color to match image */
}

.contact-details img {
    margin-right: 10px;
    width: 24px; /* Adjust icon size */
    height: 24px;
}

.social-media-links a {
    display: inline-block;
    margin: 0 10px;
}

.social-media-links img {
    width: 30px; /* Adjust icon size */
    height: 30px;
}

.contact-form-section h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #6a4f41; /* Adjust color to match image */
}

.custom-contact-form .form-group {
    margin-bottom: 15px;
}

.custom-contact-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #6a4f41; /* Adjust color to match image */
}

.custom-contact-form input[type="text"],
.custom-contact-form input[type="email"],
.custom-contact-form input[type="tel"],
.custom-contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.custom-contact-form textarea {
    resize: vertical;
}

.custom-contact-form small {
    display: block;
    margin-top: 5px;
    color: #888;
}

.custom-contact-form button[type="submit"] {
    background-color: #a07a6a; /* Adjust button color to match image */
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1em;
}

.custom-contact-form button[type="submit"]:hover {
    background-color: #8b6b5d; /* Darker shade on hover */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-page-content-area {
        flex-direction: column;
    }
}