/* Contact page styling */
.contact-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-top: 30px;
    margin-bottom: 100px; /* space for footer */
}

.contact-info {
    margin-top: 40px;
}

.contact-item {
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
    transition: transform 0.3s ease;
    padding: 15px;
    border-radius: 6px;
    background-color: #f8f9fa;
    border-left: 4px solid #1C6E99;
}

.contact-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(28, 110, 153, 0.1);
}

.contact-icon {
    width: 40px;
    margin-right: 20px;
    color: #1C6E99;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2em;
}

.contact-text {
    flex: 1;
    font-size: 1.1em;
    line-height: 1.6;
}

.contact-text p {
    margin: 0;
    color: #333;
}

.contact-text a {
    color: #1C6E99;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.contact-text a:hover {
    color: #165779;
    text-decoration: underline;
}

.contact-page h1 {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
    font-size: 2.5em;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

.contact-page h1:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #1C6E99;
    border-radius: 3px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-container {
        padding: 30px 15px;
        margin-top: 20px;
    }
    
    .contact-text {
        text-align: center;
        width: 100%;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-icon {
        margin-bottom: 10px;
        width: 100%;
        margin-right: 0;
        text-align: center;
    }
    
    .contact-page h1 {
        font-size: 2em;
    }
}
