.contact-page {
    padding: 100px 20px;
    background: #f8fafb;
}

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

.contact-title {
    text-align: center;
    margin-bottom: 60px;
}

.contact-title span {
    color: #0d5c6b;
    font-weight: bold;
    letter-spacing: 3px;
}

.contact-title h1 {
    font-size: 42px;
    margin-top: 10px;
}

.contact-form {
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

.form-control {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
}

textarea.form-control {
    min-height: 200px;
    resize: vertical;
}

.contact-btn {
    width: 100%;
    padding: 18px;
    border: none;
    border-radius: 10px;
    background: #0d5c6b;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
}

.contact-btn:hover {
    opacity: .9;
}

@media (max-width: 768px) {

    .contact-page {
        padding: 60px 15px;
    }

    .contact-form {
        padding: 25px;
    }

    .contact-title h1 {
        font-size: 32px;
    }

    .form-control {
        padding: 12px;
        font-size: 14px;
    }

    .contact-btn {
        padding: 15px;
        font-size: 16px;
    }
}

.contact-confirm {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    margin-top: 30px;
}

.confirm-row {
    border-bottom: 1px solid #eee;
    padding: 20px 0;
}

.confirm-row:last-child {
    border-bottom: none;
}

.confirm-row .label {
    font-weight: bold;
    color: #155c6d;
    margin-bottom: 10px;
}

.confirm-row .value {
    line-height: 1.8;
}

.contact-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.contact-buttons button {
    min-width: 180px;
    border: none;
    border-radius: 999px;
    padding: 15px;
    cursor: pointer;
}

.contact-buttons button[type="submit"] {
    background: #155c6d;
    color: #fff;
}

@media (max-width: 768px) {

    .contact-buttons {
        flex-direction: column;
    }

    .contact-buttons button {
        width: 100%;
    }

}

.contact-thanks {
    text-align: center;
    margin-top: 40px;
}

.contact-thanks p {
    margin-bottom: 30px;
    font-size: 18px;
    line-height: 1.8;
}

.required {
    color: red;
    font-size: 0.9rem;
    font-weight: bold;
}

.error-message {
    color: red;
    font-size: 0.9rem;
    margin-top: 5px;
}

.honeypot {
    display: none;
}