.contact-main {
    padding-top: 80px;
}

.contact-hero {
    padding: 4rem 0;
    background-color: rgb(255, 250, 235);
    text-align: center;
}

.contact-hero-content h1 {
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: rgb(31, 31, 31);
}

.contact-hero-content p {
    font-size: 1.25rem;
    color: rgb(31, 31, 31);
    opacity: 0.8;
    max-width: 700px;
    margin: 0 auto;
}

.contact-form-section {
    padding: 6rem 0;
    background-color: rgb(255, 250, 235);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: rgb(31, 31, 31);
}

.contact-info p {
    font-size: 1.125rem;
    color: rgb(31, 31, 31);
    opacity: 0.8;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: rgb(31, 31, 31);
}

.contact-item p {
    color: rgb(31, 31, 31);
    opacity: 0.8;
    margin: 0;
}

.contact-form-container {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: rgb(31, 31, 31);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid rgb(200, 200, 200);
    border-radius: 6px;
    font-size: 1rem;
    color: rgb(31, 31, 31);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgb(255, 87, 34);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    grid-column: 1 / -1;
    padding: 1rem 2rem;
    background-color: rgb(255, 87, 34);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: rgb(230, 74, 25);
    transform: translateY(-2px);
}

.success-message {
    text-align: center;
    padding: 2rem;
    background-color: rgb(240, 253, 244);
    border: 1px solid rgb(34, 197, 94);
    border-radius: 8px;
    margin-top: 1rem;
}

.success-message h3 {
    color: rgb(22, 163, 74);
    margin-bottom: 0.5rem;
}

.success-message p {
    color: rgb(22, 163, 74);
    margin: 0;
}

.contact-benefits {
    padding: 6rem 0;
    background-color: rgb(248, 248, 248);
}

.contact-benefits h2 {
    font-size: 2.5rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 3rem;
    color: rgb(31, 31, 31);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.benefit-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.benefit-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: rgb(31, 31, 31);
}

.benefit-item p {
    color: rgb(31, 31, 31);
    opacity: 0.8;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-hero-content h1 {
        font-size: 2rem;
    }
}
