h2 { text-align:center; color:#0000008a; }

header { text-align:center; padding:60px 20px; }
header h1 { 
    font-size:3rem; 
    text-shadow:2px 2px 5px rgba(247,207,227,0.8); 
    color: #f7cfe3;
}
header p { margin-top:15px; font-size:1.3rem; opacity:0.9; }

.contact-wrapper {
    max-width: 1100px;
    margin: 80px auto;
    background: #fff;
    border-radius: 16px;
    display: flex;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.contact-info {
    width: 40%;
    background: #ddc2b4;
    padding: 40px;
    color: #444;
}

.contact-info h3 { margin-bottom: 30px; }

.info-item {
    margin-bottom: 20px;
    font-size: 16px;
}

.info-item i {
    color: #0000008a;
    width: 25px;
    margin-right: 10px;
    font-size: 1.1rem;
    text-align: center;
}
.contact-info a {
    color: inherit;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.contact-info a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 1px;
    background: #c0d9b8;
    transition: width 0.3s ease;
}

.contact-info a:hover { color: #c0d9b8; }
.contact-info a:hover::after { width: 100%; }
.form {
    width: 60%;
    padding: 40px;
}

.form input,
.form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
    box-sizing: border-box;
}

.form button {
    background: #ddc2b4;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    width: auto;
}

@media (max-width: 950px) {
    .contact-wrapper {
        flex-direction: column;
        max-width: 90%;
        margin: 40px auto;
        overflow: hidden;
    }

    .contact-info,
    .form {
        width: 100%;
        padding: 30px;
        box-sizing: border-box;
    }

    .contact-info {
        text-align: center;
        border-radius: 16px 16px 0 0;
    }

    .form {
        border-radius: 0 0 16px 16px;
    }
}

@media (max-width: 480px) {
    header h1 { font-size: 2rem; }
    header p { font-size: 1.1rem; }

    .contact-wrapper {
        margin: 20px 15px;
        border-radius: 16px;
        overflow: hidden;
    }

    .contact-info {
        padding: 30px 20px;
        border-radius: 16px 16px 0 0;
    }

    .form {
        padding: 30px 20px;
        border-radius: 0 0 16px 16px;
    }

    .form input,
    .form textarea {
        font-size: 16px;
    }

    .form button {
        width: 100%;
        padding: 14px;
    }
}