:root {
    --primary-color: #76C0E2; /* Light Blue */
    --secondary-color: #58595B; /* Dark Grey */
    --background-color: #FFFFFF;
    --text-color: #333333;
    --light-grey: #f4f4f4;
    --font-family: 'Montserrat', sans-serif;
}

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

body {
    font-family: var(--font-family);
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: var(--background-color);
    padding: 20px 0;
    border-bottom: 1px solid var(--light-grey);
    text-align: center;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.logo {
    max-width: 150px;
}

.lang-switch a, .lang-switch strong {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 600;
    margin: 0 5px;
}

.lang-switch a:hover {
    color: var(--primary-color);
}

.hero h1 {
    color: var(--secondary-color);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 30px auto;
}

.cta-button {
    background-color: var(--primary-color);
    color: white;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #5aa9d1;
}

/* Form Section */
.form-section {
    padding: 80px 0;
    background-color: var(--light-grey);
}

.form-section h2 {
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.form-section p {
    text-align: center;
    margin-bottom: 40px;
}

form {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: var(--font-family);
}

.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
.checkbox-group label {
    font-weight: normal;
    display: flex;
    align-items: center;
}
.checkbox-group input {
    width: auto;
    margin-right: 8px;
}


.submit-button {
    width: 100%;
    padding: 15px;
    margin-top: 20px;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #3e3e3f;
}

/* Features & Other Sections */
section {
    padding: 80px 0;
}

section h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2rem;
    color: var(--secondary-color);
}

.features-grid, .why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-item, .why-us-item {
    background: var(--background-color);
    padding: 25px;
    border-radius: 5px;
}

.feature-item h3 { color: var(--secondary-color); margin-bottom: 10px; }


.operations-section { background-color: var(--light-grey); text-align: center; }
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
    margin-bottom: 40px;
}
.step { background: white; padding: 20px; border-radius: 5px; }
.step span {
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    font-weight: bold;
    margin: 0 auto 15px auto;
}

/* FAQ Section */
.faq-item {
    border-bottom: 1px solid #eee;
    padding: 15px 0;
}
.faq-question {
    cursor: pointer;
    font-weight: 600;
}
.faq-answer {
    margin-top: 10px;
}


/* Payment Notice */
.payment-notice {
    background-color: #fffbe6;
    border-top: 2px solid #ffe58f;
    padding: 40px 0;
    text-align: center;
}
.payment-notice h3 { margin-bottom: 10px; }

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 50px 0 20px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-map, .footer-contact {
    flex: 1;
    min-width: 300px;
}

footer h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

#map-container {
    width: 100%;
    height: 200px;
    background-color: #4a4b4d;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    background-image: url('https://upload.wikimedia.org/wikipedia/commons/8/87/World_map_blank_gmt.svg');
    background-size: cover;
    background-position: 25% 55%;
}

.ship {
    width: 20px;
    height: 20px;
    background-color: var(--primary-color);
    border-radius: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    border: 2px solid white;
}

.footer-contact a {
    color: white;
    text-decoration: none;
}
.footer-contact a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #6c6d6f;
    padding-top: 20px;
    font-size: 0.9rem;
}


/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 { font-size: 2rem; }
    .form-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
    nav { flex-direction: column; gap: 20px; }
    .steps-grid { grid-template-columns: 1fr; }
}