/* Contact Page Styles */
.contact-container {
    padding: 60px 0;
    background-color: #f5f5f7;
}

.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-header h1 {
    font-family: SF Pro Display, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    font-size: 48px;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #1d1d1f;
    margin-bottom: 15px;
}

.contact-header p {
    font-family: SF Pro Text, SF Pro Icons, Helvetica Neue, Helvetica, Arial, sans-serif;
    font-size: 21px;
    font-weight: 400;
    letter-spacing: 0.004em;
    color: #86868b;
    max-width: 600px;
    margin: 0 auto;
}

.contact-content {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.contact-info {
    background-color: #fff;
    border-radius: 18px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 800px;
}

.contact-info h2 {
    font-family: SF Pro Display, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 15px;
}

.contact-info p {
    font-family: SF Pro Text, SF Pro Icons, Helvetica Neue, Helvetica, Arial, sans-serif;
    font-size: 17px;
    line-height: 1.47059;
    font-weight: 400;
    color: #1d1d1f;
    margin-bottom: 30px;
}

.contact-form-placeholder {
    background-color: #f5f5f7;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
}

.contact-form-placeholder p {
    font-family: SF Pro Text, SF Pro Icons, Helvetica Neue, Helvetica, Arial, sans-serif;
    font-size: 17px;
    color: #86868b;
    margin: 0;
}

/* Responsive styles */
@media (max-width: 767px) {
    .contact-container {
        padding: 40px 0;
    }
    
    .contact-header h1 {
        font-size: 32px;
    }
    
    .contact-header p {
        font-size: 17px;
    }
    
    .contact-info {
        padding: 30px 20px;
    }
}
