.contact-section {
    width: 100%;
    min-height: 70vh;
    background-color: #fdfdff;
    padding: 80px 20px 100px 20px;
    display: flex;
    align-items: center;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-title {
    font-size: 48px;
    color: #333;
}

.contact-description {
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
    line-height: 1.6;
}

.contact-form {
    text-align: left;
}

.contact-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-input:focus {
    border-color: #004aad;
    outline: none;
    box-shadow: 0 0 6px rgba(0,74,173,0.2);
}

.btn--red {
    padding: 12px 40px;
    font-size: 16px;
    border-radius: 8px;
    border: none;
    background-color: #e84545;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn--red:hover {
    background-color: #dd3434;
}

.contact-info {
    font-size: 16px;
    color: #555;
    margin-top: 50px;
    line-height: 1.8;
}

@media (max-width: 1280px) {
    .contact-section {
        padding: 60px 15px 80px 15px;
    }
    .contact-title {
        font-size: 36px;
    }
    .contact-description {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 40px 10px 60px 10px;
    }
    .contact-title {
        font-size: 28px;
    }
    .contact-description {
        font-size: 14px;
        margin-bottom: 30px;
        margin-top: 20px;
    }
}

@media (max-width: 576px) {
    .contact-title {
        font-size: 24px;
    }
    .contact-description {
        font-size: 13px;
    }
    .btn--red {
        padding: 10px 30px;
        font-size: 14px;
    }
}
