/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Hero section styles */
.hero-section {
    background-color: #f8f9fa;
    text-align: center;
    padding: 6rem 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero-section h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 600;
}

.hero-section h2 {
    font-size: 3.5rem;
    color: #27ae60;
    margin-bottom: 2rem;
    font-weight: 700;
}

/* CTA button styles */
.cta {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-weight: 500;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.cta:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}

/* Content section styles */
.content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.content h2 {
    color: #2c3e50;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-weight: 600;
}

.content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #444;
}

/* Responsive design */
@media (max-width: 768px) {
    .hero-section {
        padding: 4rem 1rem;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section h2 {
        font-size: 2.5rem;
    }

    .content {
        padding: 1.5rem;
    }

    .content h2 {
        font-size: 1.75rem;
    }

    .content p {
        font-size: 1rem;
    }
}
