.contact-page {
    background-color: #f4f8fb;
    padding: 80px 0 100px;
}

.contact-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.contact-intro h1 {
    font-size: 2.5rem;
    color: #0a2540;
    font-weight: 800;
}

.intro-line {
    width: 50px;
    height: 4px;
    background: #00aeef;
    margin: 20px auto 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-info .info-item {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin-bottom: 25px;
    border: 1px solid #e1e8ef;
}

.info-item h3 {
    color: #0a2540;
    margin-bottom: 15px;
    font-size: 1.2rem;
    border-bottom: 2px solid #f4f8fb;
    padding-bottom: 10px;
}

.info-item p {
    margin-bottom: 8px;
    color: #64748b;
}

.info-item a {
    color: #00aeef;
    text-decoration: none;
    font-weight: 600;
}

.contact-map {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #e1e8ef;
}

.contact-form-wrapper {
    background: #fff;
    padding: 45px;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(10, 37, 64, 0.1);
    border: 1px solid #e1e8ef;
}

.contact-form-wrapper h3 {
    font-size: 1.8rem;
    color: #0a2540;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #0a2540;
    font-size: 0.9rem;
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: 0.3s;
}

.form-group input:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: #00aeef;
    box-shadow: 0 0 0 3px rgba(0, 174, 239, 0.1);
}

.btn-submit {
    width: 100%;
    background: #0a2540;
    color: #fff;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
    letter-spacing: 1px;
}

.btn-submit:hover {
    background: #00aeef;
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}