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

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --primary-light: #3b82f6;
    --accent-color: #7c3aed;
    --text-color: #1f2937;
    --text-light: #6b7280;
    --background: #ffffff;
    --background-light: #f9fafb;
    --border-color: #e5e7eb;
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background);
    overflow-x: hidden;
}

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

.header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

.logo h1 {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.language-switcher {
    display: flex;
    gap: 8px;
    background-color: var(--background-light);
    padding: 4px;
    border-radius: 8px;
}

.lang-btn {
    padding: 8px 16px;
    border: none;
    background-color: transparent;
    color: var(--text-color);
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background-color: var(--background);
}

.lang-btn.active {
    background-color: var(--primary-color);
    color: white;
    box-shadow: var(--shadow-md);
}

.hero {
    position: relative;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 50%, var(--accent-color) 100%);
    color: white;
    padding: 120px 0;
    text-align: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-shapes {
    position: relative;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 50%;
    right: -50px;
    animation-delay: 5s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    bottom: -50px;
    left: 50%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.hero-content-wrapper {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease-out;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 22px;
    opacity: 0.95;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 60px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

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

.stat-number {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
    font-weight: 500;
}

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

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

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-color);
}

.about {
    padding: 100px 0;
    background-color: var(--background);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text {
    text-align: left;
}

.about-text p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-item {
    display: flex;
    gap: 20px;
    padding: 24px;
    background-color: var(--background-light);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    font-size: 40px;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-color);
}

.feature-content p {
    font-size: 15px;
    color: var(--text-light);
}

.services {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--background-light) 0%, var(--background) 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.service-card {
    background-color: var(--background);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.service-card-featured {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    transform: scale(1.05);
}

.service-card-featured:hover {
    transform: scale(1.05) translateY(-8px);
}


.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.service-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent-color) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.service-card-featured .service-icon-wrapper {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.service-card:hover .service-icon-wrapper {
    transform: rotateY(360deg);
}

.service-icon {
    font-size: 40px;
}

.service-card h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-color);
}

.service-card-featured h4 {
    color: white;
}

.service-card p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-card-featured p {
    color: rgba(255, 255, 255, 0.95);
}

.service-tags {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}

.tag {
    padding: 6px 14px;
    background-color: var(--background-light);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-color);
}

.service-card-featured .tag {
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
}

.company-info {
    padding: 100px 0;
    background-color: var(--background);
}

.info-container {
    margin-top: 48px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.info-card {
    background-color: var(--background);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    padding: 48px;
    border: 1px solid var(--border-color);
}

.info-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.info-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--border-color) 50%, transparent 100%);
    margin: 32px 0;
}

.info-item {
    display: flex;
    gap: 16px;
    align-items: start;
}

.info-icon {
    font-size: 28px;
    flex-shrink: 0;
    line-height: 1;
}

.info-content {
    flex: 1;
}

.info-content strong {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.info-content span {
    font-size: 16px;
    color: var(--text-color);
    display: block;
    font-weight: 500;
    line-height: 1.5;
}

.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--background-light) 0%, var(--background) 100%);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-content {
    text-align: left;
}

.contact-content .section-tag {
    margin-bottom: 16px;
}

.contact-content .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.contact-text {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.8;
}

.contact-info {
    margin-top: 40px;
}

.contact-email {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background-color: var(--background);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-email:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.email-icon {
    font-size: 48px;
    flex-shrink: 0;
}

.email-label {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 4px;
}

.email-address {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
}

.contact-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-circle {
    position: absolute;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 50%;
    opacity: 0.1;
    animation: pulse 3s infinite ease-in-out;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.visual-content {
    position: relative;
    text-align: center;
    padding: 40px;
    background-color: var(--background);
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
}

.visual-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.visual-content p {
    font-size: 16px;
    color: var(--text-light);
    max-width: 200px;
}

.footer {
    background: linear-gradient(135deg, var(--text-color) 0%, #111827 100%);
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer p {
    font-size: 14px;
    opacity: 0.8;
}

@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-text {
        text-align: center;
    }

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

    .service-card-featured {
        transform: scale(1);
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-content {
        text-align: center;
    }

    .contact-content .section-title {
        text-align: center;
    }

    .visual-content {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 80px 0;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

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

    .section-title {
        font-size: 32px;
    }

    .about-text p {
        font-size: 16px;
    }

    .info-card {
        padding: 32px 24px;
    }

    .info-row {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .header-content {
        flex-direction: column;
        gap: 16px;
    }

    .logo h1 {
        font-size: 20px;
    }

    .contact-visual {
        height: 300px;
    }

    .visual-circle {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .stat-number {
        font-size: 36px;
    }

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

    .about,
    .services,
    .company-info,
    .contact {
        padding: 60px 0;
    }

    .section-title {
        font-size: 28px;
    }

    .lang-btn {
        padding: 6px 12px;
        font-size: 12px;
    }

    .service-card {
        padding: 30px 20px;
    }

    .email-address {
        font-size: 16px;
    }
}

/* Privacy Policy Page Styles */
.policy-hero {
    position: relative;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 50%, var(--accent-color) 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    overflow: hidden;
}

.policy-hero .hero-title {
    font-size: 48px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 16px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.back-link:hover {
    color: white;
    transform: translateX(-4px);
}

.policy-content {
    padding: 80px 0;
    background-color: var(--background);
}

.policy-container {
    max-width: 900px;
    margin: 0 auto;
}

.policy-section {
    margin-bottom: 48px;
}

.policy-section:last-child {
    margin-bottom: 0;
}

.policy-section-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-color);
}

.policy-text {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

.policy-text:last-child {
    margin-bottom: 0;
}

.policy-list {
    list-style: none;
    padding: 0;
    margin: 16px 0;
}

.policy-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.policy-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 50%;
}

.policy-subsection {
    margin: 24px 0;
    padding: 24px;
    background-color: var(--background-light);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.policy-subsection-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 16px;
}

.policy-contact {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background-color: var(--background-light);
    border-radius: 12px;
    margin-top: 16px;
}

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

.policy-contact a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

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

.footer-links {
    margin-top: 16px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: white;
}

@media (max-width: 768px) {
    .policy-hero {
        padding: 60px 0;
    }

    .policy-hero .hero-title {
        font-size: 32px;
    }

    .policy-content {
        padding: 60px 0;
    }

    .policy-section-title {
        font-size: 24px;
    }

    .policy-subsection {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .policy-hero .hero-title {
        font-size: 28px;
    }

    .policy-section-title {
        font-size: 22px;
    }

    .policy-text,
    .policy-list li {
        font-size: 15px;
    }
}
