/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    padding: 160px 0 100px 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-content p {
    font-size: 1.1rem;
    color: #94a3b8;
    margin-bottom: 35px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-primary {
    background-color: #0284c7;
    color: white;
}

.btn-primary:hover {
    background-color: #0369a1;
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* Services */
.services {
    padding: 80px 0;
    background-color: #ffffff;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2rem;
    color: #1e293b;
    margin-bottom: 10px;
}

.section-title p {
    color: #64748b;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 30px;
    border-radius: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.05);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 1.25rem;
    color: #1e293b;
    margin-bottom: 10px;
}

.service-card p {
    color: #64748b;
    font-size: 0.95rem;
}

/* Ablauf Section */
.process {
    padding: 80px 0;
    background-color: #f8fafc;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.process-step {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 30px;
    border-radius: 8px;
    position: relative;
}

.step-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: #0284c7;
    color: white;
    font-weight: 700;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    margin-bottom: 15px;
}

.process-step h3 {
    font-size: 1.2rem;
    color: #1e293b;
    margin-bottom: 10px;
}

.process-step p {
    color: #64748b;
    font-size: 0.95rem;
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: #ffffff;
    text-align: center;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-content h2 {
    font-size: 2rem;
    color: #1e293b;
    margin-bottom: 20px;
}

.about-content p {
    color: #475569;
    font-size: 1.05rem;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: #f1f5f9;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.contact-info h2 {
    font-size: 2rem;
    color: #1e293b;
    margin-bottom: 15px;
}

.contact-info p {
    color: #64748b;
    margin-bottom: 25px;
}

.contact-details {
    list-style: none;
}

.contact-details li {
    margin-bottom: 10px;
    color: #334155;
}

.contact-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.02);
}

.contact-box h3 {
    margin-bottom: 15px;
    color: #1e293b;
}

.contact-box p {
    color: #64748b;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

/* Responsive Anpassungen für die Startseite */
@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }
}