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

:root {
    --primary-color: #000000;
    --text-dark: #000000;
    --text-light: #666666;
    --bg-white: #FFFFFF;
    --button-bg: #1a1a1a;
    --button-text: #FFFFFF;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
}

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

/* Header Styles */
.header {
    background-color: var(--bg-white);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    height: 40px;
    width: auto;
}

.logo-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
}

.nav {
    display: flex;
    gap: 32px;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 16px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--text-light);
}

.language-switcher {
    background-color: var(--button-bg);
    color: var(--button-text);
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
}

.language-switcher:hover {
    background-color: #333333;
}

.lang-code {
    display: inline-block;
}

/* Hero Section Styles */
.hero {
    background-color: var(--bg-white);
    padding: 40px 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

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

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-title {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    color: var(--text-dark);
    margin: 0;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 400;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.cta-button {
    background-color: var(--button-bg);
    color: var(--button-text);
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Inter', sans-serif;
    width: fit-content;
    margin-top: 8px;
}

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

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-illustration {
    max-width: 100%;
    max-height: 700px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* About Us Section Styles */
.about {
    background-color: var(--bg-white);
    padding: 80px 0;
}

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

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-illustration {
    max-width: 100%;
    height: auto;
}

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

.about-label {
    font-size: 16px;
    font-weight: 500;
    color: #2563eb;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.about-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
    margin: 0;
    letter-spacing: -0.02em;
}

.about-subtitle {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    margin-top: 8px;
}

.about-description {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* Services Section Styles */
.services {
    background-color: var(--bg-white);
    padding: 80px 0;
}

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

.services-label {
    font-size: 16px;
    font-weight: 500;
    color: #2563eb;
    margin: 0 0 12px 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.services-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
    margin: 0 0 16px 0;
    letter-spacing: -0.02em;
}

.services-subtitle {
    font-size: 18px;
    font-weight: 400;
    color: var(--text-light);
    margin: 0;
}

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

.service-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    padding: 40px 32px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.service-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-card-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 16px 0;
}

.service-card-description {
    font-size: 15px;
    font-weight: 400;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Contact Section Styles */
.contact {
    background-color: var(--bg-white);
    padding: 80px 0;
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-label {
    font-size: 16px;
    font-weight: 500;
    color: #2563eb;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
    margin: 0;
    letter-spacing: -0.02em;
}

.contact-description {
    font-size: 18px;
    font-weight: 400;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 16px;
}

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

.contact-detail-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.contact-detail-text {
    flex: 1;
}

.contact-detail-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 8px 0;
}

.contact-detail-value {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}

.contact-form-wrapper {
    position: relative;
}

.contact-form {
    background-color: var(--bg-white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-white);
    transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #2563eb;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #9ca3af;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    background-color: var(--button-bg);
    color: var(--button-text);
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Inter', sans-serif;
    width: fit-content;
    margin-top: 8px;
}

.form-submit:hover {
    background-color: #333333;
}

.form-success {
    background-color: #f0fdf4;
    border: 1px solid #86efac;
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
    text-align: center;
}

.success-message {
    font-size: 16px;
    font-weight: 500;
    color: #166534;
    margin: 0;
}

/* Footer Styles */
.footer {
    background-color: #1f2937;
    padding: 60px 0 30px 0;
    color: #ffffff;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo-img {
    height: 40px;
    width: auto;
}

.footer-nav {
    display: flex;
    gap: 32px;
    align-items: center;
    flex-wrap: wrap;
}

.footer-nav-link {
    text-decoration: none;
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.footer-nav-link:hover {
    color: #d1d5db;
}

.footer-separator {
    width: 100%;
    height: 1px;
    background-color: #4b5563;
    margin: 30px 0;
}

.footer-bottom {
    display: flex;
    justify-content: flex-start;
}

.footer-copyright {
    font-size: 14px;
    font-weight: 400;
    color: #9ca3af;
    margin: 0;
}

/* Legal Pages Styles */
.legal-page {
    background-color: var(--bg-white);
    padding: 100px 0 80px 0;
    min-height: 70vh;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
    margin: 0 0 12px 0;
    letter-spacing: -0.02em;
}

.legal-updated {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-light);
    margin: 0 0 48px 0;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-heading {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 16px 0;
    line-height: 1.4;
}

.legal-text {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0 0 16px 0;
}

.legal-list {
    margin: 16px 0 16px 24px;
    padding: 0;
    list-style-type: disc;
}

.legal-list li {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 12px;
}

.legal-list li:last-child {
    margin-bottom: 0;
}

.logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-image {
        order: -1;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image {
        order: -1;
    }
    
    .about-title {
        font-size: 36px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .services-title {
        font-size: 36px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .contact-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
        gap: 16px;
    }
    
    .nav {
        gap: 20px;
        flex-wrap: wrap;
        order: 3;
        width: 100%;
        justify-content: flex-start;
    }
    
    .language-switcher {
        order: 2;
    }
    
    .hero {
        padding: 30px 0;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .about {
        padding: 60px 0;
    }
    
    .about-title {
        font-size: 32px;
    }
    
    .about-subtitle {
        font-size: 20px;
    }
    
    .about-description {
        font-size: 15px;
    }
    
    .services {
        padding: 60px 0;
    }
    
    .services-header {
        margin-bottom: 40px;
    }
    
    .services-title {
        font-size: 32px;
    }
    
    .services-subtitle {
        font-size: 16px;
    }
    
    .service-card {
        padding: 32px 24px;
    }
    
    .service-card-title {
        font-size: 18px;
    }
    
    .service-card-description {
        font-size: 14px;
    }
    
    .contact {
        padding: 60px 0;
    }
    
    .contact-content {
        gap: 40px;
    }
    
    .contact-title {
        font-size: 32px;
    }
    
    .contact-description {
        font-size: 16px;
    }
    
    .contact-form {
        padding: 32px 24px;
    }
    
    .contact-detail-item {
        gap: 16px;
    }
    
    .contact-detail-icon {
        width: 50px;
        height: 50px;
    }
    
    .contact-detail-title {
        font-size: 16px;
    }
    
    .contact-detail-value {
        font-size: 15px;
    }
    
    .footer {
        padding: 40px 0 24px 0;
    }
    
    .footer-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }
    
    .footer-nav {
        gap: 20px;
        width: 100%;
        justify-content: flex-start;
    }
    
    .footer-nav-link {
        font-size: 14px;
    }
    
    .footer-separator {
        margin: 24px 0;
    }
    
    .footer-copyright {
        font-size: 13px;
    }
    
    .legal-page {
        padding: 60px 0 40px 0;
    }
    
    .legal-title {
        font-size: 32px;
    }
    
    .legal-heading {
        font-size: 20px;
    }
    
    .legal-text,
    .legal-list li {
        font-size: 15px;
    }
}

