
body {
    margin: 0;
    font-family: 'Cairo', sans-serif;
    background-color: #f8f9ff;
    color: #333;
}
.container {
    max-width: 960px;
    margin: auto;
    padding: 40px 20px;
}
h1 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
}
.content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}
.form-box, .info-box {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    padding: 25px;
    width: 100%;
    max-width: 400px;
}
label {
    display: block;
    margin-top: 10px;
    margin-bottom: 5px;
    font-weight: bold;
}
input, textarea {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
    margin-bottom: 10px;
    font-family: 'Cairo', sans-serif;
}
button {
    width: 100%;
    padding: 12px;
    background-color: #0066ff;
    color: white;
    border: none;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
}
button:hover {
    background-color: #004fd1;
}
.info-item {
    margin-bottom: 15px;
    font-size: 16px;
}
.whatsapp {
    display: inline-block;
    background-color: #25D366;
    padding: 10px 15px;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
}
.map {
    margin-top: 20px;
}
.lang-switch {
    text-align: center;
    margin-bottom: 20px;
}
.lang-switch button {
    background: #f0f0f0;
    border: 1px solid #ccc;
    margin: 0 5px;
    padding: 8px 16px;
    font-size: 14px;
    cursor: pointer;
    border-radius: 6px;
}
.lang-switch button:hover {
    background: #e0e0e0;
}
.back-button {
    display: block;
    margin-top: 20px;
    background-color: #666;
    color: white;
    text-align: center;
    padding: 10px;
    border-radius: 6px;
    text-decoration: none;
}
.back-button:hover {
    background-color: #444;
}
