* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background: #f0f2f5;
    color: #333;
}

.header {
    background-color: #111;
    padding: 20px 0;
    text-align: center;
    color: white;
}

.logo {
    width: 120px;
    margin-bottom: 10px;
}

.main-content {
    max-width: 800px;
    margin: 30px auto;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.contact-box h2 {
    margin-bottom: 10px;
    font-size: 24px;
    color: #111;
}

.contact-box p {
    margin-bottom: 10px;
    font-size: 16px;
}

.contact-info a {
    color: #0066cc;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.social-icons {
    margin-top: 15px;
}

.social-icons img {
    width: 32px;
    height: 32px;
    margin-right: 10px;
    transition: transform 0.3s;
}

.social-icons img:hover {
    transform: scale(1.1);
}

.poster {
    margin-top: 30px;
    text-align: center;
}

.poster img {
    max-width: 100%;
    border-radius: 10px;
}

.footer {
    margin-top: 40px;
    padding: 15px;
    background-color: #eee;
    text-align: center;
    color: #666;
    font-size: 14px;
}


.contact-widget {
    margin-top: 40px;
}

.widget-container {
    background: #f9f9f9;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.widget-image img {
    max-width: 300px;
    border-radius: 10px;
}

.widget-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
    min-width: 250px;
}

.widget-form input,
.widget-form textarea {
    padding: 12px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 8px;
    width: 100%;
    resize: none;
}

.widget-form button {
    padding: 12px;
    font-size: 15px;
    background: linear-gradient(to right, #6a11cb, #2575fc);
    border: none;
    color: white;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.widget-form button:hover {
    opacity: 0.9;
}


.map-embed {
    margin: 20px 0;
    border-radius: 12px;
    overflow: hidden;
}

.map-embed iframe {
    width: 100%;
    height: 300px;
    border: none;
}
