.vjo-hero-section {
    position: relative;
    min-height: 100vh;
    background: url('https://images.unsplash.com/photo-1488521787991-ed7bbaae773c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') center center;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* Dark overlay for better text contrast */
.vjo-hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

/* Cards container */
.vjo-cards-container {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Individual card styles */
.vjo-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    transform: translateY(20px);
    opacity: 0;
    animation: vjo-slideUp 0.8s ease-out forwards;
}

.vjo-card:nth-child(1) {
    background: linear-gradient(135deg, #26D0CE 0%, #1A9C9A 100%);
    color: white;
    animation-delay: 0.2s;
}

.vjo-card:nth-child(2) {
    background: linear-gradient(135deg, #FF6B35 0%, #E55A2B 100%);
    color: white;
    animation-delay: 0.4s;
}

.vjo-card:nth-child(3) {
    background: linear-gradient(135deg, #4A5568 0%, #2D3748 100%);
    color: white;
    animation-delay: 0.6s;
}

.vjo-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

/* Icon styles */
.vjo-card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.vjo-card-icon svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

/* Typography */
.vjo-card-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
}

.vjo-card-description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Button styles */
.vjo-card-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    background: rgba(255, 255, 255, 0.2);
    color: currentColor;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.vjo-card-button:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.vjo-card-button span {
    position: relative;
    z-index: 1;
}

/* Scroll indicator */
.vjo-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    color: white;
    text-align: center;
    animation: vjo-bounce 2s infinite;
}

.vjo-scroll-indicator svg {
    width: 24px;
    height: 24px;
    margin-top: 0.5rem;
}

/* Animations */
@keyframes vjo-slideUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes vjo-bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes vjo-float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.vjo-card {
    animation: vjo-slideUp 0.8s ease-out forwards, vjo-float 6s ease-in-out infinite;
}

.vjo-card:nth-child(2) {
    animation-delay: 0.4s, 2s;
}

.vjo-card:nth-child(3) {
    animation-delay: 0.6s, 4s;
}

/* Responsive design */
@media (max-width: 768px) {
    .vjo-hero-section {
        padding: 1rem;
        background-attachment: scroll;
    }

    .vjo-cards-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .vjo-card {
        padding: 2rem 1.5rem;
    }

    .vjo-card-title {
        font-size: 1.5rem;
    }

    .vjo-card-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .vjo-card {
        padding: 1.5rem 2rem
    }

    .vjo-card-title {
        font-size: 1.25rem;
    }

    .vjo-card-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}