/* informationen.css */
.information-header {
    position: relative;
    height: 60vh;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.6);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    color: white;
    text-align: center;
    padding: 0 2rem;
}

.hero-content h1 {
    font-size: 4rem;
    color: var(--gold);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.5rem;
    color: var(--silver);
    letter-spacing: 0.2em;
}

.info-section {
    background: rgba(10, 10, 10, 0.95);
    padding: 4rem 2rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.info-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.info-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.info-card .icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.info-card h3 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.info-card p {
    color: var(--silver);
    line-height: 1.6;
}

.price-section, 
.service-section {
    background: rgba(10, 10, 10, 0.95);
    padding: 4rem 2rem;
}

.prices-grid,
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.price-card,
.service-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.price-card:hover,
.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.price-card .price,
.service-card .service-title {
    color: var(--gold);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.price-features,
.service-description {
    color: var(--silver);
    margin: 1rem 0;
}

.legal-section {
    background: rgba(10, 10, 10, 0.95);
    padding: 4rem 2rem;
    text-align: center;
}

.legal-text {
    max-width: 800px;
    margin: 0 auto;
    color: var(--silver);
    line-height: 1.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .info-grid,
    .prices-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }
}