.title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(1deg, #0066FF, var(--primary-blue));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    display: inline-block;
}

.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 2rem;
}

.hero::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('/images/wave-pattern.svg') no-repeat;
    background-size: cover;
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding-bottom: 0;
    margin-bottom: 0;
}

.hero-text {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #0066FF, var(--primary-blue));
    color: var(--text-light);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: transform 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    width: 250px;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    text-align: center;
}

@media (max-width: 768px) {
    .hero {
        /* flex-direction: column; */
        text-align: center;
        padding-top: 100px;
        height: 100%;
        width: 100%;
    }

    .title {
        font-size: 2rem;
    }

    .section-subtitle{
       font-size: 1.4rem;
    }
    .hero-text {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        white-space: normal;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .btn,
    .btn-outline {
        width: 100%;
        max-width: 300px;
    }
}