/* General Body Styles */
body {
    font-family: 'Montserrat', 'Helvetica', 'Arial', sans-serif;
    background-color: #f4f7f6;
    color: #333;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

/* Main Container */
.container {
    max-width: 800px;
    width: 100%;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
}

/* Header */
header h1 {
    font-size: 3.5em;
    font-weight: 700;
    margin: 0;
    color: #1a1a1a;
    letter-spacing: -2px;
}

.tagline {
    font-size: 1.2em;
    color: #666;
    margin-top: 10px;
    margin-bottom: 40px;
}

/* Value Proposition Section */
.value-proposition {
    text-align: left;
    margin-bottom: 40px;
    border-top: 1px solid #eee;
    padding-top: 40px;
}

.value-proposition h2 {
    text-align: center;
    margin-bottom: 25px;
    color: #2c3e50;
}

.value-proposition p {
    line-height: 1.7;
    font-size: 1.1em;
}

.value-proposition ul {
    list-style-type: none;
    padding: 0;
    margin-top: 20px;
}

.value-proposition li {
    background: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%2327ae60"><path d="M0 0h24v24H0z" fill="none"/><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>') no-repeat left center;
    background-size: 20px;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 1.1em;
}

/* Contact Form */
.contact-form {
    border-top: 1px solid #eee;
    padding-top: 40px;
}

.contact-form h2 {
    margin-bottom: 25px;
    color: #2c3e50;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #555;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1em;
    box-sizing: border-box; /* Important for padding */
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 5px rgba(52, 152, 219, 0.5);
}

.submit-btn {
    background-color: #3498db;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 6px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #2980b9;
}

/* Form Messages */
.success-message, .error-message {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 6px;
    font-weight: bold;
}

.success-message {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.error-message {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Footer */
footer {
    margin-top: 40px;
    font-size: 0.9em;
    color: #999;
}

/* Responsive Design */
@media (max-width: 600px) {
    .container {
        padding: 20px;
    }
    header h1 {
        font-size: 2.5em;
    }
}

/* Language Switcher Navigation */
.lang-nav {
    text-align: right;
    margin-bottom: 20px;
}

.lang-nav a {
    text-decoration: none;
    color: #3498db;
    font-weight: bold;
    font-size: 0.9em;
    padding: 5px 10px;
    border: 1px solid #3498db;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.lang-nav a:hover {
    background-color: #3498db;
    color: #ffffff;
}

.honeypot {
    display: none;
}