/* Contact Page Styles */
.contact-intro {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.contact-intro h2 {
    color: #333A56;
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
    font-weight: 600;
}

.contact-intro p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

.contact-main {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: start;
}

.contact-info {
    display: grid;
    gap: 1.5rem;
}

.info-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #333A56;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.info-card h3 {
    color: #333A56;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
}

.info-card svg {
    margin-right: 0.5rem;
}

.info-card p {
    margin-bottom: 1rem;
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
}

.info-card p:last-child {
    margin-bottom: 0;
}

.contact-details {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    color: #333;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.map-container iframe {
    width: 100%;
    height: 200px;
    border: 0;
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 1px solid #e9ecef;
}

.contact-form h2 {
    color: #333A56;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-weight: 600;
    text-align: center;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
}

.form-input {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

.form-input:focus {
    border-color: #333A56;
    outline: none;
    box-shadow: 0 0 0 3px rgba(51, 58, 86, 0.1);
}

.form-textarea {
    resize: vertical;
}

.form-message {
    margin-bottom: 2rem;
}

.contact-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #333A56 0%, #52677A 100%);
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.contact-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(51, 58, 86, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-main {
        grid-template-columns: 1fr 1.3fr;
        max-width: 1200px;
    }
}

@media (max-width: 768px) {
    .contact-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
}