:root {
    --primary-color: #6a11cb;
    --secondary-color: #2575fc;
    --dark-color: #ffffff;
    --light-color: #1a1a1a;
    --font-family: 'Poppins', sans-serif;
}

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

body {
    font-family: var(--font-family);
    line-height: 1.6;
    background-color: var(--dark-color);
    color: var(--light-color);
}

a {
    text-decoration: none;
    color: var(--light-color);
}

ul {
    list-style: none;
}

.main-header {
    background: var(--dark-color);
    padding: 1rem 5%;
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.cta-button {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4rem 5%;
    text-align: left;
}

.hero-content {
    max-width: 50%;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #555555;
}

.hero-image {
    max-width: 45%;
}

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


.features-section {
    padding: 4rem 5%;
    text-align: center;
    background-color: #f9f9f9;
}

.features-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--dark-color);
    padding: 2rem;
    border-radius: 10px;
    transition: transform 0.3s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.1);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.benefits-section {
    padding: 4rem 5%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-content {
    max-width: 600px;
    text-align: center;
}

.benefit-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.benefit-content p {
    margin-bottom: 2rem;
}

.benefit-content ul {
    text-align: left;
    display: inline-block;
}

.benefit-content ul li {
    margin-bottom: 1rem;
    font-weight: 600;
}

.final-cta {
    padding: 4rem 5%;
    text-align: center;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.final-cta .cta-button {
    background: #fff;
    color: var(--primary-color);
    margin-top: 1rem;
}

.main-footer {
    text-align: center;
    padding: 2rem 5%;
    background-color: #f9f9f9;
    font-size: 0.9rem;
}

.contact-section {
    padding: 4rem 5%;
    text-align: center;
}

.contact-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-section p {
    margin-bottom: 3rem;
    font-size: 1.2rem;
    color: #555555;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    /* The form has its own styling, so we remove the container's background and shadow */
    /*
    background: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    */
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none; /* Simple hiding for demo */
    }
    .hero {
        flex-direction: column;
        text-align: center;
    }
    .hero-content {
        max-width: 100%;
        margin-bottom: 2rem;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .hero-image {
        max-width: 80%;
    }
} 