/* Contact Page Specific Styles */
.contact-main {
    padding: 60px 0;
    background-color: #fff;
    min-height: calc(100vh - 200px);
}

.page-title {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    text-align: center;
}

.contact-intro {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.contact-form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

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

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

.required {
    color: #e74c3c;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #80CBC4;
    box-shadow: 0 0 0 2px rgba(128, 203, 196, 0.2);
}

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

.submit-btn {
    background-color: #80CBC4;
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
    font-weight: 500;
}

.submit-btn:hover {
    background-color: #4DB6AC;
}

.submit-btn:active {
    transform: translateY(1px);
}

.nav-brand h1 a {
    text-decoration: none;
    color: #80CBC4;
}

.nav-brand h1 a:hover {
    opacity: 0.8;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-main {
        padding: 40px 0;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .contact-form-container {
        margin: 0 10px;
        padding: 1.5rem;
    }
    
    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }
}