.contact-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 120px 20px 80px;
}

.contact-hero h1 {
    font-size: 2.6rem;
    margin-bottom: 10px;
}

.contact-hero p {
    font-size: 1.2rem;
    opacity: 0.7;
    margin-bottom: 60px;
}

/* Contact info list */

.contact-info h2 {
    margin-bottom: 20px;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin-bottom: 60px;
}

.contact-list li {
    margin-bottom: 14px;
    font-size: 1.1rem;
}

.contact-list a {
    color: #faf6f6;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: 0.2s;
}

.contact-list a:hover {
    border-bottom: 1px solid #f8f5f5;
}

/* Contact form */

.contact-form-section h2 {
    margin-bottom: 20px;
}

.contact-form {
    display: grid;
    gap: 20px;
    max-width: 600px;
}

.contact-form label {
    display: flex;
    flex-direction: column;
    font-weight: 600;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    font-size: 1rem;
    border: 1px solid #031b31;
    border-radius: 4px;
    margin-top: 6px;
}

.contact-form button {
    width: fit-content;
    padding: 12px 24px;
    font-size: 1rem;
    border: 1px solid #fdfbfb;
    background: transparent;
    cursor: pointer;
    transition: 0.2s;
}

.contact-form button:hover {
    background: #bb2525;
    color: #fff;
}

/* Responsive */

@media (max-width: 900px) {
    .contact-container {
        padding-top: 100px;
    }
}
.contact-form button {
    background: skyblue;
    /* Other styles... */
}
.contact-submit {
    background: skyblue;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
}

/* style after sending */
.contact-submit.sent {
    background: green;
}

.form-message {
    margin-top: 10px;
    color: #4CAF50;
    font-weight: 500;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.form-message.show {
    opacity: 1;
}

.contact-page main {
    padding-top: 180px;
}