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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
}

/* Header */
.header {
    background-color: white;
    padding: 16px 32px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

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

.logo-definition {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.definition-label-header {
    font-size: 10px;
    color: #999;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
}

.definition-title-header {
    font-size: 18px;
    font-weight: bold;
    color: #000;
    line-height: 1.2;
}

.definition-text-header {
    font-size: 12px;
    color: #666;
    line-height: 1.3;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: #666;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.2s;
}

.nav-link:hover {
    color: #000;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.language-selector {
    position: relative;
}

.lang-button {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #f0f0f0;
    border: none;
    border-radius: 20px;
    padding: 8px 16px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s;
}

.lang-button:hover {
    background-color: #e0e0e0;
}

.current-lang {
    font-weight: 500;
}

.dropdown-arrow {
    transition: transform 0.2s;
}

.lang-button.open .dropdown-arrow {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 480px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s;
    margin-top: 8px;
    padding: 8px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
}

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

.lang-option {
    padding: 10px 12px;
    cursor: pointer;
    font-size: 13px;
    transition: background-color 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
    border-radius: 8px;
    white-space: nowrap;
}

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

.lang-option.active {
    background-color: #000;
    color: white;
}

.login-btn {
    background-color: transparent;
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    color: #666;
    transition: all 0.2s;
}

.login-btn:hover {
    color: #000;
}

.register-btn {
    background-color: white;
    border: 1px solid #ddd;
    padding: 8px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s;
}

.register-btn:hover {
    background-color: #f5f5f5;
}

.user-avatar {
    width: 32px;
    height: 32px;
    background-color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    font-weight: bold;
}

/* Main Content */
.main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 32px;
}

.hero {
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: 600px;
    margin: 0 auto 60px auto;
}

.hero-title {
    font-size: 64px;
    font-weight: bold;
    color: #000;
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-description {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    background-color: #000;
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.cta-button:hover {
    background-color: #333;
    transform: translateY(-1px);
}

/* Illustrations */
.hero-illustrations {
    position: relative;
    margin-bottom: 80px;
}

.illustration {
    position: absolute;
    width: 200px;
    height: 200px;
}

.illustration.left {
    left: 10%;
    top: -40px;
}

.illustration.right {
    right: 10%;
    top: -40px;
}

.left-svg, .right-svg, .left-illustration, .right-illustration {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Stats */
.stats {
    display: flex;
    justify-content: center;
    gap: 120px;
    margin-top: 100px;
}

.stat-item {
    text-align: center;
}

.stat-icons {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
}

.icon {
    width: 32px;
    height: 32px;
    background-color: #f0f0f0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.stat-number {
    font-size: 32px;
    font-weight: bold;
    color: #000;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: #666;
}


/* World Map Section */
.world-map-section {
    padding: 80px 32px;
    background-color: #f8f9fa;
}

.world-map-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.world-map-title {
    font-size: 36px;
    font-weight: bold;
    color: #000;
    margin-bottom: 24px;
    line-height: 1.2;
}

.world-map-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 32px;
}

.consultation-btn {
    background-color: #000;
    color: white;
    border: none;
    padding: 16px 24px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.consultation-btn:hover {
    background-color: #333;
    transform: translateY(-1px);
}

.world-map-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.world-map {
    position: relative;
    width: 500px;
    height: 300px;
    background: url('images/world.png') no-repeat center;
    background-size: contain;
}

.location-pin {
    position: absolute;
    z-index: 2;
}

.pin {
    background-color: #519592;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    box-shadow: 0 2px 8px rgba(81, 149, 146, 0.3);
    animation: pulse 2s infinite;
}

.pin::before {
    content: '';
    transform: rotate(45deg);
}

@keyframes pulse {
    0% { transform: rotate(-45deg) scale(1); }
    50% { transform: rotate(-45deg) scale(1.1); }
    100% { transform: rotate(-45deg) scale(1); }
}

/* Platform Section */
.platform-section {
    padding: 80px 32px;
    background-color: white;
}

.platform-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.platform-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
}

.image-placeholder {
    background-color: #f8f9fa;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #ddd;
    transition: all 0.3s ease;
}

.main-image {
    height: 300px;
    width: 100%;
}

.secondary-image {
    height: 200px;
    width: 70%;
    margin-left: auto;
    margin-top: -40px;
    z-index: 2;
    background-color: white;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.placeholder-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.placeholder-content span {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.section-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 16px;
    font-weight: 500;
}

.platform-title {
    font-size: 36px;
    font-weight: bold;
    color: #000;
    margin-bottom: 24px;
    line-height: 1.2;
}

.platform-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-number {
    background-color: #000;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    flex-shrink: 0;
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 18px;
    font-weight: bold;
    color: #000;
    margin-bottom: 8px;
}

.feature-description {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* Why Europe Section */
.why-europe-section {
    padding: 80px 32px;
    background-color: #f8f9fa;
}

.why-europe-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.section-header {
    margin-bottom: 60px;
}

.section-title {
    font-size: 42px;
    font-weight: bold;
    color: #000;
    margin-bottom: 24px;
    line-height: 1.2;
}

.section-description {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.europe-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.benefit-card {
    background-color: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

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

.benefit-icon {
    font-size: 48px;
    margin-bottom: 24px;
}

.benefit-title {
    font-size: 24px;
    font-weight: bold;
    color: #000;
    margin-bottom: 16px;
}

.benefit-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.europe-cta {
    background-color: white;
    padding: 60px 40px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.cta-title {
    font-size: 32px;
    font-weight: bold;
    color: #000;
    margin-bottom: 16px;
}

.cta-description {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.europe-cta-btn {
    background-color: #000;
    color: white;
    border: none;
    padding: 18px 36px;
    border-radius: 25px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.europe-cta-btn:hover {
    background-color: #333;
    transform: translateY(-2px);
}

/* Pricing Section */
.pricing-section {
    padding: 80px 32px;
    background-color: white;
}

.pricing-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.pricing-card {
    background-color: #f8f9fa;
    border: 2px solid #000;
    border-radius: 20px;
    padding: 60px 40px;
    max-width: 500px;
    margin: 60px auto 0;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #000 0%, #333 100%);
}

.pricing-header {
    margin-bottom: 40px;
}

.pricing-title {
    font-size: 28px;
    font-weight: bold;
    color: #000;
    margin-bottom: 8px;
}

.pricing-subtitle {
    font-size: 16px;
    color: #666;
}

.pricing-amount {
    margin-bottom: 40px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 16px;
}

.price-main {
    font-size: 64px;
    font-weight: bold;
    color: #000;
    line-height: 1;
}

.price-secondary {
    font-size: 24px;
    color: #666;
    font-weight: 500;
}

.pricing-features {
    margin-bottom: 40px;
    text-align: left;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.feature-check {
    color: #000;
    font-weight: bold;
    font-size: 16px;
    width: 20px;
    flex-shrink: 0;
}

.feature-text {
    font-size: 16px;
    color: #333;
}

.pricing-cta-btn {
    background-color: #000;
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 25px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    width: 100%;
    margin-bottom: 24px;
}

.pricing-cta-btn:hover {
    background-color: #333;
    transform: translateY(-2px);
}

.pricing-note {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        flex-direction: column;
        gap: 16px;
    }
    
    .nav-links {
        gap: 16px;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .illustration.left,
    .illustration.right {
        display: none;
    }
    
    .stats {
        flex-direction: column;
        gap: 40px;
    }
    
    .main {
        padding: 40px 16px;
    }
    
    .definition-title-header {
        font-size: 14px;
    }
    
    .definition-text-header {
        font-size: 10px;
    }
    
    .world-map-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .world-map-title {
        font-size: 28px;
    }
    
    .world-map {
        width: 100%;
        max-width: 400px;
        height: 240px;
    }
    
    .platform-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .platform-images {
        order: 2;
    }
    
    .platform-text {
        order: 1;
        text-align: center;
    }
    
    .platform-title {
        font-size: 28px;
    }
    
    .secondary-image {
        margin-top: -20px;
        width: 80%;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .europe-benefits {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .benefit-card {
        padding: 30px 20px;
    }
    
    .europe-cta {
        padding: 40px 20px;
    }
    
    .cta-title {
        font-size: 24px;
    }
    
    .pricing-card {
        padding: 40px 20px;
        margin-top: 40px;
    }
    
    .pricing-title {
        font-size: 24px;
    }
    
    .price-main {
        font-size: 48px;
    }
    
    .price-secondary {
        font-size: 20px;
    }
    
    .pricing-amount {
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 1024px) {
    .illustration {
        width: 150px;
        height: 150px;
    }
    
    .illustration.left {
        left: 5%;
    }
    
    .illustration.right {
        right: 5%;
    }
    
    .stats {
        gap: 80px;
    }
}