.main-card {
    max-width: 1200px;
    margin: 30px auto;
    padding: 30px;
    background-color: #a7eede;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    font-family: 'Kameron', serif;
    margin-top: 120px;
}

/* Section Titles */
.section-title {
    font-size: 28px;
    color: #006a4e;
    margin-bottom: 20px;
    text-align: center;
}

/* Form Sections */
.form-section {
    background-color: white;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Toggle Button */
.toggle-btn {
    background-color: #a7eede;
    color: #006a4e;
    border: none;
    padding: 12px 20px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 8px;
    width: 100%;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

.toggle-btn:hover {
    background-color: #96d8c8;
}

.toggle-btn i {
    transition: transform 0.3s;
}

.toggle-btn.active i {
    transform: rotate(180deg);
}

/* Form Container */
.form-container {
    display: none;
    padding: 20px 0;
}

.form-container.active {
    display: block;
}

/* Form Elements */
.radio-group {
    margin-bottom: 15px;
}

.radio-group label {
    margin-right: 20px;
    cursor: pointer;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #006a4e;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="date"],
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Kameron', serif;
    font-size: 16px;
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

/* File Upload */
.file-upload {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    border: 2px dashed #ddd;
    border-radius: 5px;
    cursor: pointer;
    transition: border-color 0.3s;
}

.file-upload:hover {
    border-color: #006a4e;
}

.file-upload i {
    font-size: 40px;
    color: #006a4e;
    margin-bottom: 10px;
}

.file-upload input {
    display: none;
}

/* Buttons */
.submit-btn {
    background-color: #006a4e;
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
    width: 100%;
    max-width: 200px;
}

.submit-btn:hover {
    background-color: #006a4e;
}

.submit-btn-container {
    display: flex;
    justify-content: center;
    margin-top: 25px;
}

/* Contacts Section */
.contacts-section {
    background-color: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contacts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.contact-card {
    background-color: #f8f8f8;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.contact-card h3 {
    color: #006a4e;
    margin-top: 0;
    margin-bottom: 15px;
}

.contact-info {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.contact-info i {
    margin-right: 10px;
    color: #006a4e;
    width: 20px;
    text-align: center;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .main-card {
        margin: 20px auto;
        padding: 20px;
    }
    
    .contacts-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .toggle-btn {
        padding: 10px 15px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .radio-group label {
        display: block;
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .submit-btn {
        max-width: 100%;
    }
}