:root {
    --primary: #e85c0d;
    --primary-foreground: #ff9100;
    --secondary: #f1f5f9;
    --background: #ffffff;
    --foreground: #333333;
    --muted-foreground: #64748b;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--background);
    color: var(--foreground);
}

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

.language-switch {
    display: flex;
    align-items: center;
}

.language-switch a {
    padding: 5px 10px;
    text-decoration: none;
    color: #333;
}

.language-switch a.active {
    font-weight: bold;
    color: #007bff;
}

.language-switch span {
    color: #999;
    margin: 0 5px;
}

/* Hero Section */
.hero {
    background: linear-gradient(
        to right,
        var(--primary),
        var(--primary-foreground)
    );
    color: white;
    padding: 80px 0;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 80%;
}

.hero-content {
    flex: 1;
    max-width: 50%;
    text-align: left;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 24px;
    margin-bottom: 30px;
}

.button-group {
    display: flex;
    gap: 20px;
}

.hero-image {
    flex: 1;
    max-width: 50%;
    text-align: right;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    /* border-radius: 10px; */
    /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
}

/* New styles for header and pages */
.header {
    background-color: var(--primary);
    padding: 20px 0;
}

.header nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

.header nav ul li {
    margin: 0 15px;
}

.header nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.header nav ul li a:hover,
.header nav ul li a.active {
    background-color: rgba(255, 255, 255, 0.2);
}

.page-content {
    padding: 40px 0;
}

.page-content h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.page-content h2 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-content p,
.page-content ul {
    margin-bottom: 15px;
    line-height: 1.6;
}

.page-content ul {
    padding-left: 20px;
}

/* Responsive design for header */
@media (max-width: 768px) {
    .header nav ul {
        flex-direction: column;
        align-items: center;
    }

    .header nav ul li {
        margin: 10px 0;
    }

    .hero-img img {
        display: none;
    }
}

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

h1,
h2,
h3 {
    margin-bottom: 20px;
}

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

.btn-white {
    background-color: white;
    color: var(--primary);
}

.btn-white:hover {
    background-color: #f1f1f1;
}

.icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(
        to right,
        var(--primary),
        var(--primary-foreground)
    );
    color: white;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 24px;
    margin-bottom: 30px;
}

.button-group {
    display: flex;
    justify-content: center;
    align-items: center;
}
.button-group a {
    display: inline-block;
}
.button-group img {
    width: 150px;
    object-fit: contain;
}

.hero-image {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 500px;
    width: auto;
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: var(--secondary);
}

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

.feature-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.feature-card .icon {
    margin-bottom: 20px;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
}

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

.step-card {
    width: 200px;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.step-number {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary);
    margin: 10px 0;
}

.arrow {
    color: var(--primary);
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: var(--secondary);
}

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

.testimonial-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-card .author {
    font-weight: bold;
    text-align: right;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background-color: var(--primary);
    color: white;
    text-align: center;
}

.cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta p {
    font-size: 20px;
    margin-bottom: 30px;
}

/* Privacy Page Styles */
.privacy-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.privacy-content h1 {
    color: var(--primary);
    font-size: 36px;
    margin-bottom: 20px;
}

.privacy-content h2 {
    color: var(--primary);
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
}
.legal-content h2 {
    color: var(--primary);
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
}

.privacy-content p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.privacy-content ul {
    margin-bottom: 15px;
    padding-left: 20px;
}

.privacy-content li {
    margin-bottom: 10px;
}

.last-updated {
    font-style: italic;
    color: var(--muted-foreground);
    margin-bottom: 30px;
}

.contact-info {
    background-color: var(--secondary);
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
}

.contact-info h2 {
    margin-top: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }

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

    .hero-image {
        display: none;
    }

    .feature-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .steps {
        flex-direction: column;
    }

    .arrow {
        transform: rotate(90deg);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-container {
        flex-direction: column;
    }

    .hero-content,
    .hero-image {
        max-width: 100%;
        text-align: center;
    }

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

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

    .button-group {
        justify-content: center;
    }

    .hero-image {
        margin-top: 40px;
    }
}
