* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
}

body {
    background: #f4f6f9;
}

/* GLOBAL */
.container {
    max-width: 1100px;
    margin: auto;
    padding: 20px 10px;
}


h1 {
    text-align: center;
    font-size: 24px;
    color: #1a1a1a;
}

.subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
}

/* CONTENT */
.content {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

/* INFO */
.info {
    flex: 1;
    background: #fff;
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}
.logos{
    flex: content;
    justify-items: center;    
    background-color: #ffffff;
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}
.logos img{
    box-shadow: 0px 4px 15px rgba(0,0,0,0.3);
}

.info h2 {
    margin-bottom: 10px;
}

.info p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.badge {
    margin-top: 10px;
    padding: 10px;
    background: #e8f5e9;
    border-left: 5px solid #28a745;
    border-radius: 8px;
    font-weight: bold;
}

/* FORM */
form {
    flex: 1;
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

form h2 {
    margin-bottom: 10px;
}

input, textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    transition: 0.3s;
}

input:focus, textarea:focus {
    border-color: #007bff;
}

textarea {
    height: 120px;
}

button {
    width: 100%;
    padding: 12px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

button:hover {
    background: #0056b3;
}

#msg {
    text-align: center;
    margin-top: 10px;
    color: green;
}

/* MAP */
.map {
    margin-top: 40px;
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.map h2 {
    margin-bottom: 15px;
}

.map iframe {
    width: 100%;
    height: 350px;
    border: none;
    border-radius: 10px;
}

.map-note {
    margin-top: 10px;
    color: #555;
    font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .content {
        flex-direction: column;
    }
}