/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Base Styles */
body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--background-white);
    color: var(--text-black);
    line-height: 1.6;
    font-size: 16px;
}

/* Contact Section */
.contact-section {
    padding: 60px 20px;
    background-color: var(--background-white);
    text-align: center;
}

.contact-section h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-green);
}

.contact-section p {
    font-size: 18px;
    color: #555;
    max-width: 700px;
    margin: 0 auto 40px;
}

.contact-form {
    max-width: auto;
    margin: 0 auto;
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-form .form-group {
    margin-bottom: 20px;
    text-align: left;
}

.contact-form label {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-black);
    display: block;
    margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 5px;
    outline: none;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary-green);
}

.contact-form textarea {
    resize: none;
    height: 150px;
}

.contact-form .btn {
    background-color: var(--primary-green);
    color: white;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 30px;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.contact-form .btn:hover {
    background-color: var(--hover-green);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.1);
}

/* Contact Details */
.contact-details {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.contact-details .detail-item {
    text-align: center;
    width: 250px;
    background-color: var(--background-white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.contact-details .detail-item:hover {
    transform: translateY(-5px);
}

.contact-details .detail-item h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 10px;
}

.contact-details .detail-item p {
    font-size: 16px;
    color: #555;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-details {
        flex-direction: column;
        align-items: center;
    }

    .contact-form {
        padding: 20px;
    }
}
