.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 100px 20px;
    background: linear-gradient(135deg, #222, #111);
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 40px;
    color: #ccc;
}

.hero .buttons a {
    margin: 0 10px;
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: flex-start;
    }

    header nav {
        margin-top: 10px;
    }

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

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

    .hero .buttons a {
        margin: 5px 0;
        width: 100%;
        text-align: center;
    }
}

.hero .btn-primary {
    box-shadow: 0 4px 15px rgba(255, 55, 95, 0.4);
}

.hero .btn-outline {
    border-color: #ff375f;
    color: #ff375f;
}

.hero .btn-outline:hover {
    background: #ff375f;
    color: #fff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
}

p {
    line-height: 1.6;
}
