 /* Reset and Base Styles */
 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header Styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #1f2937;
}

nav ul {
    display: flex;
    list-style: none;
}

nav li {
    margin-left: 30px;
}

.contact-button {
    border: 2px solid #1f2937;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
}

/* Hero Section */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 5%;
}

.hero-content {
    width: 50%;
}

.hero-image {
    width: 45%;
}

.hero-image img {
    width: 100%;
    height: auto;
}

h1 {
    font-size: 2.5rem;
    color: #1f2937;
    margin-bottom: 20px;
    line-height: 1.2;
}

p {
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    background-color: #1f2937;
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 20px;
}

/* Packages Section */
.packages {
    padding: 50px 5%;
    background-color: #f9fafb;
}

h2 {
    font-size: 2rem;
    color: #1f2937;
    margin-bottom: 20px;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
}

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

.package-card.dark {
    background-color: #1f2937;
    color: white;
}

.package-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.package-card ul {
    list-style: none;
    margin-bottom: 20px;
}

.package-card li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.package-card li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #6366f1;
}

.package-card .price {
    font-weight: bold;
    margin-bottom: 20px;
}

.package-button {
    display: inline-block;
    border: 2px solid #1f2937;
    color: #1f2937;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
}

.package-card.dark .package-button {
    border-color: white;
    color: white;
}

/* Analysis Section */
.analysis {
    padding: 50px 5%;
    background-color: #f3f4f6;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.analysis-content {
    width: 50%;
}

.analysis-image {
    width: 45%;
}

.analysis-image img {
    width: 100%;
    height: auto;
}

/* Contact Section */
.contact {
    padding: 50px 5%;
    background-color: #1f2937;
    color: white;
    display: flex;
    justify-content: space-between;
}

.contact-info {
    width: 45%;
}

.contact-form {
    width: 50%;
}

.form-input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: none;
}

.submit-button {
    width: 100%;
    padding: 12px;
    background-color: white;
    color: #1f2937;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
}

/* Footer */
footer {
    padding: 30px 5%;
    background-color: #f3f4f6;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
}

.footer-links a {
    margin-left: 20px;
    color: #6b7280;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
}

.cookie-consent h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1f2937;
}

.cookie-buttons {
    margin-top: 20px;
}

.cookie-button {
    padding: 10px 20px;
    margin-right: 10px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
}

.accept-all {
    background-color: #1f2937;
    color: white;
    border: none;
}

.reject-optional {
    background-color: white;
    color: #1f2937;
    border: 1px solid #1f2937;
}

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

    .hero-content, .hero-image, .analysis-content, .analysis-image {
        width: 100%;
    }

    .hero-image, .analysis-image {
        margin-top: 30px;
    }

    .package-grid {
        grid-template-columns: 1fr;
    }

    .contact {
        flex-direction: column;
    }

    .contact-info, .contact-form {
        width: 100%;
    }

    .contact-form {
        margin-top: 30px;
    }

    nav {
        display: none;
    }

    footer {
        flex-direction: column;
        gap: 20px;
    }
}