.hero-section {
    padding-top: 10rem;
    padding-bottom: 1rem;
    color: rgb(73, 73, 73);
    position: relative;
    /* background: white; */
    width: 100%;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="rgba(255,255,255,0.03)"/></svg>') repeat;
    opacity: 0.4;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 75rem;
    margin: 0 auto;
    text-align: center;
}

.hero-title {
    font-size: 6rem;
    font-weight: 700;
    margin-bottom: 6rem;
    line-height: 1.2;
    font-family: 'Cal Sans', sans-serif;
    text-shadow: 0 0.25rem 0.9375rem rgba(0, 0, 0, 0.3);
    background: #063601;
    padding-top: 2rem;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-title2 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #063601;
    padding-top: 5rem;
    margin-bottom: 2.5rem;
    line-height: 1.2;

}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-subtitle2 {
    font-size: 1.5rem;
    font-weight: 750;
    color: #063601;
    padding-bottom: 3rem;
}

.hero-subtitle3 {
    font-size: 1.5rem;
    font-weight: 750;
    color: #063601;
}

.hero-cta {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    align-items: center;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 0.9375rem;
    }
}

.hero-features {
    display: flex;
    font-size: 1.5rem;
    font-weight: bold;
    justify-content: center;
    gap: 1.875rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    color: #063601;
    
}

.hero-feature i {
    color: #063601;
}

/* Features-Section: Standard an richtiger Stelle */
.feature-section {
    padding: 6rem 6rem;
    /* background: linear-gradient(to bottom, #f9f9f9, #ffffff); */
    position: relative;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #063601;
    text-shadow: 0 0.25rem 0.9375rem rgba(0, 0, 0, 0.3);
    margin-bottom: 8rem;
    position: relative;
    display: inline-block;
}
.section-title-feature {
    font-size: 2.8rem;
    font-weight: 700;
    color: #063601;
    text-shadow: 0 0.25rem 0.9375rem rgba(0, 0, 0, 0.3);
    position: relative;
    display: inline-block;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #063601;
    border-radius: 2px;
}

.feature-card {
    background-color: white;
    border-radius: 12px;
    padding: 2.5rem;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(6, 54, 1, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.feature-icon-wrapper {
    width: 70px;
    height: 70px;
    background-color: rgba(6, 54, 1, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon-wrapper i {
    font-size: 1.8rem;
    color: #063601;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #063601;
    margin-bottom: 1.2rem;
}

.feature-card p {
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
}

.feature-list li i {
    color: #063601;
    margin-right: 0.8rem;
    font-size: 1.1rem;
}

.cta-container {
    margin-top: 4rem;
    text-align: center;
}

.hero-cta {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

.cta-primary, .cta-secondary {
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.cta-primary {
    background-color: #063601;
    color: white;
    box-shadow: 0 5px 15px rgba(6, 54, 1, 0.3);
}

.cta-primary:hover {
    background-color: #0a4a01;
    transform: translateY(-3px);
    color: white;
}

.cta-secondary {
    background-color: transparent;
    color: #063601;
    border: 2px solid #063601;
}

.cta-secondary:hover {
    background-color: rgba(6, 54, 1, 0.1);
    color: #063601;
}

.cta-primary i, .cta-secondary i {
    margin-right: 0.7rem;
}

.features-highlights {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 1rem;
}

.feature-highlight {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: #063601;
    font-weight: 600;
}

.feature-highlight i {
    color: #063601;
}

@media (max-width: 991px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .feature-card {
        padding: 2rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .features-highlights {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}
