/* Hero Section */
.hero-section {
    /* background: linear-gradient(to bottom right, #0d0d0d, #1a1a1a); */
    color: #ffffff;
    text-align: center;
    padding: 6rem 2rem;
}

.hero-section h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-section p {
    font-size: 1.6rem;
    color: #cccccc;
    max-width: 800px;
    line-height: 2rem;
    margin: 0 auto 2rem auto;
}

.hero-section .cta-button {
    background-color: #a259ff;
    color: #ffffff;
    text-decoration: none;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.hero-section .cta-button:hover {
    background-color: #884ae3;
    border: 1px solid white;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-cta-content {
    position: relative;
    padding: 2rem;
    z-index: 2;
}