.container-fluid {
    padding: 40px 20px;
    background-color: #34343D;
    padding-left:15%;
    padding-right:15%;
    padding-top: 20px;
}

.content-card {
    background: white;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    border-color: var(--color-cronacblue);
}

.content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s;
}

.content-card:hover::before {
    left: 100%;
}

.tab-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.tab-btn {
    background: #BBB;
    border: 1px solid var(--color-cronacblue);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--cs-theme-secondary-text-font);
    font-weight: 500;
}

.tab-btn:hover {
    background: var(--color-cronacblue);
    transform: scale(1.05);
}

.tab-btn.active {
    background: var(--color-cronacblue);
    box-shadow: 0 0 20px rgba(56, 127, 200, 0.5);
}

.tab-content {
    display: none;
    animation: fadeInUp 0.5s ease;
}

.tab-content.active {
    display: block;
}

.tab-content h2 {
    color: var(--color-orange);
    font-family: var(--cs-theme-primary-headline-font);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.process-step {
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1rem;
    border-left: 4px solid var(--color-cronacblue);
    transition: all 0.3s ease;
    cursor: pointer;
}

.process-step:hover {
    transform: translateX(10px);
    background: rgba(56, 127, 200, 0.1);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: var(--color-cronacblue);
    color: white;
    border-radius: 50%;
    font-weight: bold;
    margin-right: 1rem;
    font-size: 0.9rem;
}

.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.floating-element {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--color-cronacblue);
    border-radius: 50%;
    animation: float 20s infinite linear;
}

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

.hero-image {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.hero-image:hover {
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .main-title {
        font-size: 2.5rem;
    }
    .tab-buttons {
        flex-direction: column;
    }
    .process-step:hover {
        transform: none;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}