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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: white;
    padding: 20px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-popup.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 300px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.btn-cookie {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-cookie.accept {
    background: #4CAF50;
    color: white;
}

.btn-cookie.decline {
    background: #f44336;
    color: white;
}

.btn-cookie:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.cookie-link {
    color: #87CEEB;
    text-decoration: underline;
    font-size: 14px;
}

/* Header */
.header {
    background: #1a1a1a;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo {
    font-size: 28px;
    font-weight: 700;
    color: #87CEEB;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #87CEEB;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.language-selector {
    position: relative;
    cursor: pointer;
}

.current-lang {
    color: white;
    font-weight: 500;
    padding: 8px 12px;
    border: 1px solid #333;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.current-lang:hover {
    border-color: #87CEEB;
    color: #87CEEB;
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: #2a2a2a;
    border: 1px solid #333;
    border-radius: 4px;
    min-width: 60px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.language-selector:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: block;
    color: white;
    text-decoration: none;
    padding: 8px 12px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.lang-option:hover {
    background: #333;
    color: #87CEEB;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 50px;
    min-height: 60vh;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text > p:first-of-type {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #f0f8ff;
}

.hero-description {
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.8;
    color: #e6f3ff;
}

.cta-button {
    display: inline-block;
    background: #87CEEB;
    color: #1a1a1a;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #4682B4;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* About Section */
.about {
    padding: 80px 0;
    background: #f8f9fa;
}

.about h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    color: #1a1a1a;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 2;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Services Section */
.services {
    padding: 80px 0;
    background: white;
}

.services h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    color: #1a1a1a;
}

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

.service-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-number {
    width: 50px;
    height: 50px;
    background: #667eea;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.service-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-item p {
    color: #555;
    line-height: 1.6;
}

/* Investment Section */
.investment {
    padding: 80px 0;
    background: #1a1a1a;
    color: white;
}

.investment-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.investment-text {
    flex: 1;
}

.investment-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
}

.investment-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #e6e6e6;
}

.investment-image {
    flex: 1;
}

.investment-image img {
    width: 100%;
    border-radius: 15px;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: #f8f9fa;
}

.benefits h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    color: #1a1a1a;
}

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

.benefit-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.benefit-item p {
    color: #555;
    line-height: 1.6;
}

/* Statistics Section */
.statistics {
    padding: 80px 0;
    background: white;
}

.stats-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.stats-image {
    flex: 1;
}

.stats-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.stats-text {
    flex: 1;
}

.stats-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.stats-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #555;
}

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

.stats-list li {
    padding: 10px 0;
    border-left: 4px solid #667eea;
    padding-left: 20px;
    margin-bottom: 10px;
    background: #f8f9fa;
    border-radius: 5px;
    font-weight: 500;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #1a1a1a;
    color: white;
}

.contact h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.contact > p {
    text-align: center;
    margin-bottom: 50px;
    font-size: 16px;
    color: #e6e6e6;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 25px;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #333;
    border-radius: 8px;
    background: #2a2a2a;
    color: white;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s ease;
}

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

.submit-btn {
    width: 100%;
    padding: 15px;
    background: #667eea;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.submit-btn:hover {
    background: #5a67d8;
}

/* Footer */
.footer {
    background: #0a0a0a;
    color: white;
    padding: 50px 0 20px;
}

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

.footer-brand h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #87CEEB;
}

.footer-brand p {
    line-height: 1.8;
    color: #ccc;
}

.footer-links h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #87CEEB;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #87CEEB;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #999;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    /* Cookie Popup Mobile */
    .cookie-content {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }

    .cookie-content p {
        min-width: auto;
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
    }

    /* Header Mobile */
    .header-right {
        order: -1;
    }

    .language-selector {
        margin-right: 15px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #1a1a1a;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 20px 0;
        margin: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 15px 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Hero Mobile */
    .hero {
        padding: 100px 0 60px;
        text-align: center;
    }

    .hero-content {
        flex-direction: column;
        gap: 30px;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .hero-text > p:first-of-type {
        font-size: 18px;
    }

    .hero-description {
        font-size: 14px;
    }

    /* About Mobile */
    .about {
        padding: 60px 0;
    }

    .about h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .about-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    /* Services Mobile */
    .services {
        padding: 60px 0;
    }

    .services h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }

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

    .service-item {
        padding: 20px;
    }

    /* Investment Mobile */
    .investment {
        padding: 60px 0;
    }

    .investment-content {
        flex-direction: column-reverse;
        gap: 30px;
        text-align: center;
    }

    .investment-text h2 {
        font-size: 28px;
    }

    /* Benefits Mobile */
    .benefits {
        padding: 60px 0;
    }

    .benefits h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }

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

    .benefit-item {
        padding: 20px;
    }

    /* Statistics Mobile */
    .statistics {
        padding: 60px 0;
    }

    .stats-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .stats-text h2 {
        font-size: 28px;
    }

    /* Contact Mobile */
    .contact {
        padding: 60px 0;
    }

    .contact h2 {
        font-size: 28px;
    }

    /* Footer Mobile */
    .footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 24px;
    }

    .hero-text > p:first-of-type {
        font-size: 16px;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 16px;
    }

    .about h2,
    .services h2,
    .benefits h2,
    .investment-text h2,
    .stats-text h2,
    .contact h2 {
        font-size: 24px;
    }

    .service-item,
    .benefit-item {
        padding: 15px;
    }

    .form-group input,
    .form-group textarea {
        padding: 10px 12px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-item,
.benefit-item {
    animation: fadeInUp 0.6s ease forwards;
}

.service-item:nth-child(2) {
    animation-delay: 0.1s;
}

.service-item:nth-child(3) {
    animation-delay: 0.2s;
}

.service-item:nth-child(4) {
    animation-delay: 0.3s;
}

.service-item:nth-child(5) {
    animation-delay: 0.4s;
}

.benefit-item:nth-child(2) {
    animation-delay: 0.1s;
}

.benefit-item:nth-child(3) {
    animation-delay: 0.2s;
}

.benefit-item:nth-child(4) {
    animation-delay: 0.3s;
}

.benefit-item:nth-child(5) {
    animation-delay: 0.4s;
}