.landing-content {
    width: 100%;
    min-height: 100vh;
    padding: 2rem 3rem;
    background: linear-gradient(135deg, #0066ff 0%, #00ccff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.landing-content::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 10s infinite alternate;
}

@keyframes pulse {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.landing-header {
    padding: 4rem 0;
    background: transparent;
    text-align: center;
    position: relative;
    z-index: 10;
    color: white;
    max-width: 800px;
    width: 100%;
}

.landing-header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.landing-header .lead {
    font-size: 1.5rem;
    color: rgba(255,255,255,0.8);
    opacity: 0.9;
    margin-bottom: 2rem;
}

.landing-header .btn {
    margin: 0 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.landing-header .btn-outline-primary {
    color: white;
    border-color: white;
}

.landing-header .btn-outline-success {
    color: white;
    border-color: white;
}

.landing-header .btn-outline-primary:hover,
.landing-header .btn-outline-success:hover {
    background-color: white;
    color: #0066ff;
}

@media (max-width: 768px) {
    .landing-header h1 {
        font-size: 2.5rem;
    }
    
    .landing-header .lead {
        font-size: 1.2rem;
    }
}