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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

header {
    text-align: center;
    padding: 2rem;
    background-color: #f8f8f8;
}

h1 {
    font-size: 2.5rem;
    color: #2c3e50;
}

.subtitle {
    font-size: 1.2rem;
    color: #7f8c8d;
}

.hero {
    height: 80vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?ixlib=rb-4.0.3');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content {
    padding: 2rem;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta-button {
    padding: 1rem 2rem;
    font-size: 1.2rem;
    background-color: #e74c3c;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 2rem;
    transition: background-color 0.3s;
}

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

.features {
    display: flex;
    justify-content: space-around;
    padding: 4rem 2rem;
    background-color: #f8f8f8;
}

.feature {
    text-align: center;
}

.contact {
    text-align: center;
    padding: 4rem 2rem;
}

.contact h2 {
    margin-bottom: 1rem;
}

footer {
    text-align: center;
    padding: 2rem;
    background-color: #2c3e50;
    color: white;
}

@media (max-width: 768px) {
    .hero h2 {
        font-size: 2rem;
    }

    .features {
        flex-direction: column;
        gap: 2rem;
    }
} 