.contact-content {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-content h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
}

.contact-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.contact-content form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-content label {
    font-size: 16px;
    color: #333;
}

.contact-content input,
.contact-content textarea {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
    box-sizing: border-box;
}

.contact-content textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-content button {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #ff6f61;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-content button:hover {
    background-color: #e65a50;
}

.g-recaptcha {
    margin: 15px 0;
}

@media (max-width: 768px) {
    .contact-content {
        margin: 20px;
        padding: 15px;
    }
    .contact-content h2 {
        font-size: 20px;
    }
    .contact-content p,
    .contact-content label,
    .contact-content input,
    .contact-content textarea,
    .contact-content button {
        font-size: 14px;
    }
}