/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #EFEDE7;
}

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

/* Header Styles */
.header {
    background-color: #0A2E4E;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Language Switcher */
.language-switcher {
    position: relative;
}

.lang-btn {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 16px;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.lang-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.flag {
    font-size: 20px;
}

.arrow {
    font-size: 12px;
    transition: transform 0.3s;
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: none;
    min-width: 150px;
    z-index: 1000;
    overflow: hidden;
}

.lang-dropdown.show {
    display: block;
}

.lang-option {
    background: none;
    border: none;
    padding: 10px 15px;
    width: 100%;
    text-align: left;
    cursor: pointer;
    color: #333;
    transition: background-color 0.3s;
    font-size: 14px;
}

.lang-option:hover {
    background-color: #f0f0f0;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-img {
    height: 60px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

/* Navigation */
.nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-size: 16px;
    padding: 8px 15px;
    border-radius: 20px;
    transition: all 0.3s;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    background-color: #2FA4A9;
    color: white;
}

/* Main Content */
.main {
    padding: 40px 0;
    min-height: calc(100vh - 200px);
}

/* Hero Section */
.hero {
    text-align: center;
    background-color: #0A2E4E;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    color: white;
}

.hero-title {
    font-size: 36px;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-description {
    margin-bottom: 30px;
}

.hero-description p {
    font-size: 18px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.cta-box {
    background-color: #F2B705;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    font-weight: bold;
    font-size: 18px;
    color: #0A2E4E;
    box-shadow: 0 4px 15px rgba(242, 183, 5, 0.3);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.service-card {
    background-color: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    position: relative;
}

.service-card.turquoise {
    background-color: #2FA4A9;
    color: white;
}

.service-card h3 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #0A2E4E;
}

.service-card.turquoise h3 {
    color: #0A2E4E;
}

.service-list {
    list-style: none;
}

.service-list li {
    padding: 3px 0;
    padding-left: 25px;
    position: relative;
    color: #0A2E4E;
    font-size: 20px;
    line-height: 1.5;
}

.service-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #0A2E4E;
    font-size: 20px;
}

.service-card.turquoise .service-list li::before {
    color: #0A2E4E;
}

.flex-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 48px;
    opacity: 0.3;
}

/* Why Choose Section */
.why-choose {
    background-color: #0A2E4E;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    color: white;
}

.why-choose h3 {
    font-size: 40px;
    margin-bottom: 20px;
    text-align: center;
}

.why-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    list-style: none;
}

.why-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 20px;
}

.why-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2FA4A9;
    font-weight: bold;
    font-size: 18px;
}

/* Download CTA */
.download-cta {
    text-align: center;
    margin-bottom: 40px;
}

.download-btn {
    background-color: #F2B705;
    color: #0A2E4E;
    border: none;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(242, 183, 5, 0.3);
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(242, 183, 5, 0.4);
}

/* Contact Page Styles */
.contact-info {
    background-color: #0A2E4E;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    color: white;
}

.contact-info h2 {
    font-size: 28px;
    margin-bottom: 20px;
    text-align: center;
}

.contact-details {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
}

.contact-icon {
    font-size: 24px;
}

.contact-item a {
    color: #2FA4A9;
    text-decoration: none;
    font-weight: bold;
}

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

/* Contact Form */
.contact-form-section {
    background-color: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

.contact-form {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

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

.form-group label {
    margin-bottom: 5px;
    font-weight: bold;
    color: #0A2E4E;
}

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2FA4A9;
}

.submit-btn {
    background-color: #F2B705;
    color: #0A2E4E;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(242, 183, 5, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(242, 183, 5, 0.4);
}

.form-message {
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: bold;
    display: none;
}

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

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

/* Footer */
.footer {
    background-color: #0A2E4E;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}

.footer-description {
    color: white;
    text-decoration: none;
}

.footer-description a {
    color: #2FA4A9;
    text-decoration: none;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .logo-img {
        height: 50px;
        max-width: 160px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .contact-details {
        flex-direction: column;
        gap: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}
