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

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

#hero {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #7a47f2, #c4a4fc, #9458f4);
    color: white;
    padding: 20px;
    text-align: center;
}

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

.logo {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
}

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

#hero p {
    font-size: 24px;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.cta-buttons .btn {
    background: #7a47f2;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    border: 2px solid #7a47f2;
    transition: background 0.3s, color 0.3s, border 0.3s;
    font-size: 18px;
}

.cta-buttons .btn:hover {
    background: white;
    color: #7a47f2;
    border: 2px solid #7a47f2;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    margin-top: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

footer {
    background: #7a47f2;
    color: white;
    padding: 20px 0;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        width: 90%;
    }

    .logo {
        font-size: 36px;
    }

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

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

    .cta-buttons .btn {
        padding: 12px 20px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 28px;
    }

    #hero h1 {
        font-size: 28px;
    }

    #hero p {
        font-size: 16px;
    }

    .cta-buttons .btn {
        padding: 10px 15px;
        font-size: 14px;
    }
}