/* 
* Hauptstylesheet für Baumpflege Hamburg 
* GrünProfis Website
*/

:root {
    --primary-color: #2e7d32;
    --secondary-color: #81c784;
    --accent-color: #ffc107;
    --dark-color: #114927;
    --light-color: #f1f8e9;
    --black-color: #000000;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    overflow-x: hidden;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--dark-color);
}

/* Navigation */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    transition: all 0.4s ease;
}

.navbar-scrolled {
    padding: 10px 0;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.15);
}

.navbar-brand {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.7rem;
    transition: color 0.3s;
}

.navbar-brand:hover {
    color: var(--dark-color);
}

.nav-link {
    color: #333;
    font-weight: 500;
    margin: 0 10px;
    position: relative;
    padding: 5px 0 !important;
    transition: color 0.3s;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 0;
    transition: width 0.3s;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link:hover::after {
    width: 100%;
}

.navbar .btn-contact {
    background-color: var(--primary-color);
    color: white;
    border-radius: 30px;
    padding: 10px 22px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(46, 125, 50, 0.3);
    transition: all 0.3s;
}

.navbar .btn-contact:hover {
    background-color: var(--dark-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(46, 125, 50, 0.4);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/api/placeholder/1920/1080') center/cover no-repeat;
    color: white;
    padding: 200px 0 150px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(46, 125, 50, 0.3) 0%, rgba(0, 0, 0, 0) 70%);
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero h1 {
    font-size: 3.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
}

.hero h1 span {
    color: var(--accent-color);
}

.hero p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 30px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    line-height: 1.6;
}

.hero-btn {
    background-color: var(--accent-color);
    color: #333;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4);
    transition: all 0.3s;
    margin: 0 10px 10px;
    position: relative;
    overflow: hidden;
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.4s;
}

.hero-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(255, 193, 7, 0.5);
    color: #111;
}

.hero-btn:hover::before {
    left: 100%;
}

.hero-btn-outline {
    background-color: transparent;
    border: 2px solid white;
    color: white;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.hero-btn-outline:hover {
    background-color: white;
    color: var(--primary-color);
    box-shadow: 0 12px 30px rgba(255, 255, 255, 0.3);
}

.hero-badge {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 150px;
    height: 150px;
    background-color: var(--accent-color);
    color: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 700;
    transform: rotate(15deg);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    z-index: 1;
    padding: 20px;
    font-size: 0.9rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: rotate(15deg) scale(1);
    }
    50% {
        transform: rotate(15deg) scale(1.05);
    }
    100% {
        transform: rotate(15deg) scale(1);
    }
}

/* Services Section */
.services {
    padding: 120px 0;
    
    background-color: #114927;
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background-color: rgba(46, 125, 50, 0.05);
    border-radius: 50%;
}

.services::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background-color: rgba(46, 125, 50, 0.05);
    border-radius: 50%;
}

.section-title {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
}

.section-title h2 {
    font-weight: 800;
    color: #fff;
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
    font-size: 2.5rem;
}

.section-title p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 70px;
    height: 4px;
    background-color: var(--accent-color);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.service-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s;
    height: 100%;
    position: relative;
    top: 0;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-img {
    height: 220px;
    background-position: center;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

.service-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.service-content {
    padding: 30px;
    position: relative;
}

.service-icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    background-color: var(--primary-color);
    color: white;
    font-size: 30px;
    border-radius: 50%;
    margin: -70px auto 25px;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 25px rgba(46, 125, 50, 0.3);
    transition: all 0.3s;
}

.service-card:hover .service-icon {
    background-color: var(--accent-color);
    color: #333;
    transform: rotateY(180deg);
}

.service-title {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.service-btn {
    background-color: var(--primary-color);
    color: white;
    border-radius: 30px;
    padding: 8px 20px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 5px 15px rgba(46, 125, 50, 0.2);
}

.service-btn i {
    margin-left: 8px;
    transition: transform 0.3s;
}

.service-btn:hover {
    background-color: var(--accent-color);
    color: #333;
    box-shadow: 0 8px 20px rgba(46, 125, 50, 0.3);
}

.service-btn:hover i {
    transform: translateX(5px);
}

/* About Section */
.about {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.about-pattern {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background-color: rgba(129, 199, 132, 0.1);
    border-radius: 50%;
    z-index: -1;
}

.about-img {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    position: relative;
}

.about-experience {
    position: absolute;
    bottom: 30px;
    right: -30px;
    background-color: var(--accent-color);
    color: #333;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    width: 180px;
}

.about-experience h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0;
}

.about-experience p {
    margin-bottom: 0;
    font-weight: 600;
}

.about-content {
    padding-left: 30px;
}

.about-content h2 {
    color: var(--black-color);
    font-weight: 800;
    margin-bottom: 25px;
    font-size: 2.5rem;
}

.about-content p {
    margin-bottom: 30px;
    line-height: 1.8;
}

.about-feature {
    margin: 25px 0;
    background-color: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.about-feature:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.about-icon {
    color: var(--primary-color);
    font-size: 28px;
    margin-right: 20px;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background-color: rgba(46, 125, 50, 0.1);
    border-radius: 50%;
    transition: all 0.3s;
}

.about-feature:hover .about-icon {
    background-color: var(--primary-color);
    color: white;
}

.about-feature h4 {
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
}

/* Why Choose Us */
.why-us {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--dark-color) 0%, var(--primary-color) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.why-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/api/placeholder/500/500') center/cover no-repeat;
    opacity: 0.05;
}

.why-us .section-title h2 {
    color: white;
}

.why-us .section-title h2::after {
    background-color: var(--accent-color);
}

.why-card {
    text-align: center;
    padding: 40px 25px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 15px;
    transition: all 0.4s;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.why-card:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.why-icon {
    font-size: 45px;
    margin-bottom: 25px;
    color: var(--accent-color);
    transition: all 0.3s;
}

.why-card:hover .why-icon {
    transform: scale(1.2);
}

.why-card h4 {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.counter-box {
    text-align: center;
    margin-top: 80px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.counter-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.counter-text {
    font-weight: 600;
    font-size: 1.1rem;
}

/* Testimonials */
.testimonials {
    padding: 120px 0;
    background-color: var(--light-color);
    position: relative;
    overflow: hidden;
}

.testimonial-card {
    background-color: white;
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin: 20px 10px;
    position: relative;
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-rating {
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: #FFD700;
    font-size: 18px;
    margin-right: 3px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 25px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-name {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.testimonial-position {
    font-size: 0.9rem;
    color: #777;
}

.quote-icon {
    position: absolute;
    font-size: 100px;
    color: rgba(46, 125, 50, 0.1);
    top: 20px;
    right: 20px;
    z-index: 0;
}

/* Contact Section */
.contact {
    padding: 120px 0;
    position: relative;
}

.contact-info {
    margin-bottom: 30px;
}

.contact-icon {
    width: 70px;
    height: 70px;
    line-height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    font-size: 28px;
    border-radius: 50%;
    text-align: center;
    margin-right: 20px;
    box-shadow: 0 8px 25px rgba(46, 125, 50, 0.2);
    transition: all 0.3s;
}

.contact-info:hover .contact-icon {
    transform: translateY(-5px) rotate(10deg);
    box-shadow: 0 12px 30px rgba(46, 125, 50, 0.3);
}

.contact-text h4 {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.contact-form {
    background-color: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    bottom: -10px;
    left: -10px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 25px;
    z-index: -1;
    opacity: 0.1;
}

.form-label {
    font-weight: 600;
    color: #555;
}

.form-control {
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 25px;
    border: 1px solid #ddd;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
    transition: all 0.3s;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(46, 125, 50, 0.1);
}

.btn-submit {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 8px 25px rgba(46, 125, 50, 0.25);
    position: relative;
    overflow: hidden;
}

.btn-submit::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.7s ease;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(46, 125, 50, 0.35);
}

.btn-submit:hover::before {
    left: 100%;
}

.btn-submit:active {
    transform: translateY(1px);
}




/* CTA Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(rgba(46, 125, 50, 0.9), rgba(46, 125, 50, 0.9)), url('/api/placeholder/1920/1080') center/cover fixed no-repeat;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/api/placeholder/500/500') center/cover no-repeat;
    opacity: 0.05;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta h2 {
    font-weight: 800;
    margin-bottom: 20px;
    font-size: 3rem;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.cta p {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 1.2rem;
}

.cta-btn {
    background-color: var(--accent-color);
    color: #333;
    font-weight: 700;
    padding: 15px 40px;
    border-radius: 50px;
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.4s;
}

.cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.cta-btn:hover::before {
    left: 100%;
}

/* Footer */
footer {
    background-color: #111;
    color: #aaa;
    padding: 90px 0 0;
    position: relative;
}

.footer-top {
    margin-bottom: 60px;
}

.footer-about h3, .footer-links h3, .footer-contact h3 {
    color: white;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
    display: inline-block;
}

.footer-about h3::after, .footer-links h3::after, .footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--accent-color);
    border-radius: 2px;
}

.footer-links ul {
    list-style: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: all 0.3s;
    display: block;
    position: relative;
    padding-left: 20px;
}

.footer-links a::before {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--accent-color);
    transition: all 0.3s;
}

.footer-links a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-links a:hover::before {
    color: white;
}

.footer-contact p {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
}

.footer-contact i {
    margin-right: 15px;
    color: var(--accent-color);
    font-size: 18px;
    margin-top: 5px;
}

.social-icons {
    margin-top: 30px;
}

.social-icons a {
    display: inline-block;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s;
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px) rotate(10deg);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.newsletter-form {
    margin-top: 30px;
    position: relative;
}

.newsletter-form .form-control {
    padding: 15px 25px;
    border-radius: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    box-shadow: none;
    padding-right: 150px;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form .btn {
    position: absolute;
    right: 5px;
    top: 5px;
    padding: 10px 20px;
    border-radius: 50px;
    background-color: var(--accent-color);
    color: #333;
    font-weight: 600;
    border: none;
    transition: all 0.3s;
}

.newsletter-form .btn:hover {
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    color: var(--primary-color);
}

.footer-bottom {
    background-color: #0a0a0a;
    padding: 25px 0;
    margin-top: 70px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    margin-bottom: 0;
}

.footer-bottom a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: white;
}

/* Scroll to top button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s;
    z-index: 99;
}

.scroll-top.active {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    color: #333;
}

/* Responsive adjustments */
@media (max-width: 1199px) {
    .hero h1 {
        font-size: 3.2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .about-experience {
        right: 20px;
        bottom: 20px;
        width: 160px;
        padding: 15px;
    }
}

@media (max-width: 991px) {
    .hero {
        padding: 150px 0 100px;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    .about-content {
        padding-left: 0;
        margin-top: 50px;
    }
    
    .about-img {
        margin-bottom: 30px;
    }
    
    .service-card, .why-card, .testimonial-card {
        margin-bottom: 30px;
    }
    
    .counter-box {
        margin-bottom: 30px;
    }
    
    .contact-form {
        margin-top: 50px;
        padding: 40px;
    }
}

@media (max-width: 767px) {
    .hero h1 {
        font-size: 2.3rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero-btn {
        padding: 12px 25px;
        margin-bottom: 15px;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .about-experience {
        position: relative;
        right: 0;
        bottom: 0;
        width: 100%;
        margin-top: 30px;
    }
    
    .cta h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 575px) {
    .hero-badge {
        display: none;
    }
    
    .navbar-brand {
        font-size: 1.5rem;
    }
}


.btn-submit, 
.btn-submit:hover, 
.btn.btn-submit:hover,
.btn.btn-submit:active,
.btn.btn-submit:focus {
    color: white !important;
}

.btn-submit::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.7s ease;
    z-index: 1;
}

.btn-submit span {
    position: relative;
    z-index: 2;
}


.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-right: 10px;
    border-radius: 50%;
    background-color: #2E7D32; /* Ihre Primärfarbe für GrünProfis */
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icons a i {
    font-size: 18px;
    color: white;
}

.social-icons a:hover {
    background-color: #3a8d3e; /* Leicht hellere Farbe beim Hover */
    transform: translateY(-3px);
}


.white {
    color:#fff;
}

.cta-process .section-title h2 {
    color: white;
}

.testimonials .section-title h2,
.contact .section-title h2 {
    color: #000000;
}