* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background: linear-gradient(135deg, #c74d64, #928dab);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    text-align: center;
    width: 100%;
    max-width: 1200px;
    padding: 20px;
}

header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-info {
    display: flex;
    justify-content: space-around;
    margin-top: 2rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.info-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s;
    width: 300px;
    min-width: 280px;
    text-align: center;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
}

.info-item:hover {
    transform: translateY(-10px);
}

.info-item h2 {
    margin-top: 0.5rem;
    font-size: 1.5rem;
}

.info-item p {
    margin: 0.5rem 0 1rem;
}

button {
    background: #ff6f61;
    border: none;
    color: white;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s;
}

button:hover {
    background: #e63946;
}

#map {
    width: 100%;
    height: 200px;
    margin-top: 1rem;
    border-radius: 10px;
}

.social-media {
    margin: 2rem 0;
}

.social-media h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.social-media a {
    margin: 0.5rem;
    display: inline-block;
    font-size: 1.5rem;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.social-media a:hover {
    color: #ff6f61;
}

.contact-form, .subscribe-newsletter {
    margin: 2rem 0;
}

.contact-form h3, .subscribe-newsletter h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-form input, .contact-form textarea, .subscribe-newsletter input {
    width: 100%;
    max-width: 500px;
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 5px;
    border: none;
    outline: none;
}

.contact-form textarea {
    height: 150px;
}

@media (max-width: 768px) {
    .contact-info {
        flex-direction: column;
        align-items: center;
    }

    header h1 {
        font-size: 2.5rem;
    }

    .info-item {
        width: 90%;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 2rem;
    }

    .info-item {
        padding: 1rem;
    }

    button {
        padding: 0.6rem 1rem;
    }
}
