* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    color: #2e2e2e;
    background: #faf8f4;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-small {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Enhanced Animated Background Elements */
.bg-decoration {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(126, 200, 80, 0.15), rgba(53, 92, 125, 0.15));
    animation: float 12s ease-in-out infinite;
    filter: blur(1px);
}

.floating-shape:nth-child(1) {
    width: 120px;
    height: 120px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.floating-shape:nth-child(2) {
    width: 180px;
    height: 180px;
    top: 60%;
    right: 5%;
    animation-delay: 4s;
}

.floating-shape:nth-child(3) {
    width: 100px;
    height: 100px;
    top: 80%;
    left: 10%;
    animation-delay: 8s;
}

.floating-shape:nth-child(4) {
    width: 150px;
    height: 150px;
    top: 30%;
    right: 20%;
    animation-delay: 2s;
}

.floating-shape:nth-child(5) {
    width: 90px;
    height: 90px;
    top: 45%;
    left: 50%;
    animation-delay: 6s;
}

.floating-shape:nth-child(6) {
    width: 110px;
    height: 110px;
    top: 15%;
    left: 75%;
    animation-delay: 10s;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0px) translateX(0px) rotate(0deg) scale(1);
        opacity: 0.4;
    }
    25% {
        transform: translateY(-40px) translateX(20px) rotate(90deg) scale(1.1);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-20px) translateX(-30px) rotate(180deg) scale(0.9);
        opacity: 0.5;
    }
    75% {
        transform: translateY(-60px) translateX(10px) rotate(270deg) scale(1.05);
        opacity: 0.8;
    }
}

/* Particle System */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: linear-gradient(45deg, #7ec850, #355c7d);
    border-radius: 50%;
    animation: particleFloat 15s linear infinite;
    opacity: 0;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) translateX(0px) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
        transform: scale(1);
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) translateX(100px) scale(0);
        opacity: 0;
    }
}

/* Header with Glassmorphism */
header {
    background: rgba(250, 248, 244, 0.85);
    backdrop-filter: blur(20px);
    padding: 1rem 0;
    box-shadow: 0 8px 32px rgba(53, 92, 125, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(126, 200, 80, 0.2);
}

header.scrolled {
    background: rgba(250, 248, 244, 0.95);
    backdrop-filter: blur(25px);
    box-shadow: 0 12px 40px rgba(53, 92, 125, 0.15);
    transform: translateY(-2px);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.8rem;
    font-weight: 700;
    color: #355c7d;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.logo::before {
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, transparent, rgba(126, 200, 80, 0.1), transparent);
    border-radius: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.logo:hover::before {
    opacity: 1;
}

.logo:hover {
    transform: scale(1.05) translateY(-2px);
    color: #7ec850;
}

.logo svg,
.logo img {
    width: 65px;
    height: 65px;
    filter: drop-shadow(0 4px 8px rgba(53, 92, 125, 0.2));
    transition: all 0.4s ease;
    object-fit: cover;
    align-items: center;
    display: flex;
    margin-bottom: -20px;
}

.logo:hover svg,
.logo:hover img {
    filter: drop-shadow(0 6px 12px rgba(126, 200, 80, 0.4));
    transform: rotate(5deg);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: #355c7d;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    overflow: hidden;
}

.nav-links a::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(126, 200, 80, 0.1), transparent);
    transition: left 0.6s ease;
	pointer-events: none;
}

.nav-links a:hover::before {
    left: 100%;
}

.nav-links a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 5px;
    left: 50%;
    background: linear-gradient(90deg, #7ec850, #355c7d);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
    border-radius: 2px;
	pointer-events: none;
}

.nav-links a:hover {
    color: #7ec850;
    transform: translateY(-3px);
    background: rgba(126, 200, 80, 0.1);
}

.nav-links a:hover::after {
    width: 80%;
}

/* Mobile Sidebar */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #355c7d;
    cursor: pointer;
    padding: 0.8rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mobile-menu-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(126, 200, 80, 0.2), transparent);
    transition: left 0.5s ease;
}

.mobile-menu-btn:hover::before {
    left: 100%;
}

.mobile-menu-btn:hover {
    background: rgba(126, 200, 80, 0.15);
    color: #7ec850;
    transform: scale(1.1);
}

.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background: rgba(250, 248, 244, 0.95);
    backdrop-filter: blur(25px);
    box-shadow: -10px 0 40px rgba(53, 92, 125, 0.2);
    transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    padding: 2rem 1.5rem;
    border-left: 3px solid #7ec850;
}

.mobile-sidebar.active {
    right: 0;
}

.mobile-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(126, 200, 80, 0.3);
}

.mobile-sidebar-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: #355c7d;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.mobile-sidebar-close:hover {
    background: rgba(126, 200, 80, 0.15);
    color: #7ec850;
    transform: rotate(90deg) scale(1.1);
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
}

.mobile-nav-links li {
    margin-bottom: 1.5rem;
    transform: translateX(50px);
    opacity: 0;
    animation: slideInMobile 0.5s ease forwards;
}

.mobile-nav-links li:nth-child(1) {
    animation-delay: 0.1s;
}
.mobile-nav-links li:nth-child(2) {
    animation-delay: 0.2s;
}
.mobile-nav-links li:nth-child(3) {
    animation-delay: 0.3s;
}
.mobile-nav-links li:nth-child(4) {
    animation-delay: 0.4s;
}
.mobile-nav-links li:nth-child(5) {
    animation-delay: 0.5s;
}

@keyframes slideInMobile {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.mobile-nav-links a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem;
    color: #355c7d;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.mobile-nav-links a::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(126, 200, 80, 0.1), transparent);
    transition: left 0.6s ease;
}

.mobile-nav-links a:hover::before {
    left: 100%;
}

.mobile-nav-links a:hover {
    background: rgba(126, 200, 80, 0.15);
    border-color: #7ec850;
    color: #7ec850;
    transform: translateX(10px) scale(1.02);
}

.mobile-nav-links svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.mobile-nav-links a:hover svg {
    transform: scale(1.2) rotate(10deg);
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 999;
    backdrop-filter: blur(5px);
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Parallax Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(250, 248, 244, 0.9) 0%, rgba(255, 255, 255, 0.8) 100%);
    padding: 10rem 0 6rem;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(126, 200, 80, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(53, 92, 125, 0.1) 0%, transparent 50%),
    url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%237EC850' fill-opacity='0.05'%3E%3Ccircle cx='50' cy='50' r='8'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: -1;
    animation: backgroundShift 20s ease-in-out infinite;
}

@keyframes backgroundShift {
    0%,
    100% {
        transform: translateX(0) translateY(0);
    }
    25% {
        transform: translateX(-20px) translateY(-10px);
    }
    50% {
        transform: translateX(20px) translateY(-20px);
    }
    75% {
        transform: translateX(-10px) translateY(10px);
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    animation: slideInLeft 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.hero-text::before {
    content: "";
    position: absolute;
    top: -20px;
    left: -20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #7ec850, #355c7d);
    border-radius: 50%;
    opacity: 0.1;
    animation: pulse 3s ease-in-out infinite;
}

.hero-text h1 {
    font-size: 4rem;
    font-weight: 900;
    color: #355c7d;
    margin-bottom: 2rem;
    line-height: 1.1;
    text-shadow: 0 4px 8px rgba(53, 92, 125, 0.1);
    position: relative;
    background: linear-gradient(135deg, #355c7d 0%, #2a4a63 50%, #355c7d 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
}

@keyframes gradientShift {
    0%,
    100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.hero-text .subtitle {
    font-size: 1.6rem;
    color: #2e2e2e;
    margin-bottom: 3rem;
    font-weight: 500;
    opacity: 0.9;
    position: relative;
    animation: fadeInUp 1.5s ease 0.3s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 0.9;
        transform: translateY(0);
    }
}

.cta-button {
    background: linear-gradient(135deg, #7ec850 0%, #6bb142 100%);
    color: white;
    padding: 1.5rem 3.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(126, 200, 80, 0.4);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1.5s ease 0.6s both;
    @media(max-width: 768px) {
        padding: 1rem 1.5rem;
    }
}

.cta-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.8s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
}

.cta-button:hover::after {
    width: 300px;
    height: 300px;
}

.cta-button:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 20px 40px rgba(126, 200, 80, 0.6);
}

.cta-button svg {
    transition: transform 0.3s ease;
}

.cta-button:hover svg {
    transform: rotate(360deg) scale(1.2);
}

.hero-image {
    text-align: center;
    animation: slideInRight 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.hero-image::before {
    content: "";
    position: absolute;
    top: -30px;
    left: -30px;
    right: -30px;
    bottom: -30px;
    background: linear-gradient(45deg, rgba(126, 200, 80, 0.15), rgba(53, 92, 125, 0.15));
    border-radius: 40px;
    z-index: -1;
    animation: morphing 6s ease-in-out infinite;
}

@keyframes morphing {
    0%,
    100% {
        border-radius: 40px;
        transform: scale(1) rotate(0deg);
    }
    25% {
        border-radius: 60px 40px;
        transform: scale(1.05) rotate(1deg);
    }
    50% {
        border-radius: 40px 60px;
        transform: scale(1.02) rotate(-1deg);
    }
    75% {
        border-radius: 50px 30px;
        transform: scale(1.08) rotate(0.5deg);
    }
}

.hero-image::after {
    content: "";
    position: absolute;
    top: 20px;
    right: 20px;
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #7ec850, #355c7d);
    border-radius: 50%;
    opacity: 0.1;
    animation: float 8s ease-in-out infinite reverse;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(53, 92, 125, 0.3);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}
@media(max-width: 768px) {
    .hero-image img {

        max-height: 400px;
        max-width: 350px;
        object-fit: cover;
        object-position: center;
    }
}

.hero-image img:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 40px 80px rgba(53, 92, 125, 0.4);
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Enhanced Services Section */
.services-preview {
    background: rgba(255, 255, 255, 0.95);
    padding: 8rem 0;
    margin: 4rem 0;
    border-radius: 40px;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(53, 92, 125, 0.1);
    border: 1px solid rgba(126, 200, 80, 0.2);
    position: relative;
    overflow: hidden;
}

.services-preview::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(126, 200, 80, 0.05) 50%, transparent 70%);
    animation: rotate 20s linear infinite;
    z-index: 0;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.services-preview > * {
    position: relative;
    z-index: 1;
}

.services-preview h2 {
    text-align: center;
    font-size: 3.5rem;
    color: #355c7d;
    margin-bottom: 5rem;
    font-weight: 900;
    position: relative;
    animation: fadeInUp 1s ease;
}

.services-preview h2::before {
    content: "";
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #7ec850, #355c7d);
    border-radius: 50%;
    opacity: 0.1;
    animation: pulse 3s ease-in-out infinite;
}

.services-preview h2::after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 6px;
    background: linear-gradient(90deg, #7ec850, #355c7d, #7ec850);
    border-radius: 3px;
    animation: expand 2s ease-in-out infinite;
}

@keyframes expand {
    0%,
    100% {
        width: 100px;
    }
    50% {
        width: 150px;
    }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    margin-bottom: 4rem;
}

.service-item {
    padding: 4rem 3rem;
    border-radius: 30px;
    background: rgba(250, 248, 244, 0.9);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(126, 200, 80, 0.2);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transform: translateY(20px);
    opacity: 0;
    animation: slideInUp 0.8s ease forwards;
}

.service-item:nth-child(1) {
    animation-delay: 0.1s;
}
.service-item:nth-child(2) {
    animation-delay: 0.2s;
}
.service-item:nth-child(3) {
    animation-delay: 0.3s;
}
.service-item:nth-child(4) {
    animation-delay: 0.4s;
}

@keyframes slideInUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.service-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(126, 200, 80, 0.15), transparent);
    transition: left 0.8s ease;
}

.service-item::after {
    content: "";
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, rgba(126, 200, 80, 0.1), rgba(53, 92, 125, 0.1));
    border-radius: 50%;
    opacity: 0;
    transition: all 0.5s ease;
}

.service-item:hover::before {
    left: 100%;
}

.service-item:hover::after {
    opacity: 1;
    transform: scale(1.5);
}

.service-item:hover {
    transform: translateY(-20px) scale(1.03);
    box-shadow: 0 30px 60px rgba(126, 200, 80, 0.25);
    background: rgba(255, 255, 255, 0.98);
    border-color: #7ec850;
}

.service-item svg {
    width: 100px;
    height: 100px;
    margin-bottom: 2.5rem;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 6px 12px rgba(126, 200, 80, 0.3));
}

.service-item:hover svg {
    transform: scale(1.3) rotate(15deg);
    filter: drop-shadow(0 10px 20px rgba(126, 200, 80, 0.5));
}

.service-item h3 {
    font-size: 1.8rem;
    color: #355c7d;
    font-weight: 700;
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
}

.service-item:hover h3 {
    color: #7ec850;
}

.service-item p {
    color: #2e2e2e;
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.service-details {
    margin-top: 2rem;
}

.service-details ul {
    list-style: none;
    padding: 0;
}

.service-details li {
    padding: 0.8rem 0;
    color: #2e2e2e;
    position: relative;
    padding-left: 2rem;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInLeft 0.5s ease forwards;
}

.service-details li:nth-child(1) {
    animation-delay: 0.1s;
}
.service-details li:nth-child(2) {
    animation-delay: 0.2s;
}
.service-details li:nth-child(3) {
    animation-delay: 0.3s;
}
.service-details li:nth-child(4) {
    animation-delay: 0.4s;
}
.service-details li:nth-child(5) {
    animation-delay: 0.5s;
}
.service-details li:nth-child(6) {
    animation-delay: 0.6s;
}

.service-details li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #7ec850;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.service-item:hover .service-details li::before {
    transform: scale(1.3);
}

/* Enhanced About Section */
.about {
    background: rgba(255, 255, 255, 0.95);
    padding: 8rem 0;
    margin: 4rem 0;
    border-radius: 40px;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(53, 92, 125, 0.1);
    border: 1px solid rgba(126, 200, 80, 0.2);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(126, 200, 80, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(53, 92, 125, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 8rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about h2 {
    font-size: 3.5rem;
    color: #355c7d;
    margin-bottom: 3rem;
    font-weight: 900;
    position: relative;
}

.about h2::before {
    content: "";
    position: absolute;
    top: -15px;
    left: -15px;
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #7ec850, #355c7d);
    border-radius: 50%;
    opacity: 0.1;
    animation: pulse 4s ease-in-out infinite;
}

.about p {
    font-size: 1.5rem;
    color: #2e2e2e;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

.about p:nth-child(2) {
    animation-delay: 0.2s;
}
.about p:nth-child(3) {
    animation-delay: 0.4s;
}

.about-image {
    text-align: center;
    position: relative;
}

.about-image::before {
    content: "";
    position: absolute;
    top: -25px;
    left: -25px;
    right: -25px;
    bottom: -25px;
    background: linear-gradient(45deg, rgba(53, 92, 125, 0.15), rgba(126, 200, 80, 0.15));
    border-radius: 30px;
    z-index: -1;
    animation: morphing 8s ease-in-out infinite;
}

.about-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 30px;
    box-shadow: 0 25px 50px rgba(53, 92, 125, 0.3);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-image img:hover {
    transform: scale(1.08) rotate(-2deg);
    box-shadow: 0 35px 70px rgba(53, 92, 125, 0.4);
}

/* Enhanced Benefits Section */
.for-relatives {
    background: rgba(255, 255, 255, 0.95);
    padding: 8rem 0;
    margin: 4rem 0;
    border-radius: 40px;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(53, 92, 125, 0.1);
    border: 1px solid rgba(126, 200, 80, 0.2);
    position: relative;
    overflow: hidden;
}

.for-relatives::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, rgba(126, 200, 80, 0.1), rgba(53, 92, 125, 0.1));
    border-radius: 50%;
    animation: float 12s ease-in-out infinite;
}

.for-relatives h2 {
    font-size: 3.5rem;
    color: #355c7d;
    margin-bottom: 5rem;
    font-weight: 900;
    text-align: center;
    position: relative;
    z-index: 1;
}

.for-relatives h2::after {
    content: "";
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 6px;
    background: linear-gradient(90deg, #7ec850, #355c7d, #7ec850);
    border-radius: 3px;
    animation: expand 3s ease-in-out infinite;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.benefit-card {
    background: linear-gradient(135deg, rgba(126, 200, 80, 0.1) 0%, rgba(126, 200, 80, 0.05) 100%);
    padding: 4rem 3rem;
    border-radius: 30px;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(126, 200, 80, 0.3);
    position: relative;
    overflow: hidden;
    transform: translateY(30px);
    opacity: 0;
    animation: slideInUp 0.8s ease forwards;
}

.benefit-card:nth-child(1) {
    animation-delay: 0.1s;
}
.benefit-card:nth-child(2) {
    animation-delay: 0.2s;
}
.benefit-card:nth-child(3) {
    animation-delay: 0.3s;
}
.benefit-card:nth-child(4) {
    animation-delay: 0.4s;
}

.benefit-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.8s ease;
}

.benefit-card::after {
    content: "";
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #7ec850, #355c7d);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.5s ease;
}

.benefit-card:hover::before {
    left: 100%;
}

.benefit-card:hover::after {
    opacity: 0.2;
    transform: scale(2);
}

.benefit-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 50px rgba(126, 200, 80, 0.3);
    border-color: #7ec850;
    background: linear-gradient(135deg, rgba(126, 200, 80, 0.15) 0%, rgba(126, 200, 80, 0.08) 100%);
}

.benefit-card h3 {
    font-size: 1.6rem;
    color: #355c7d;
    font-weight: 700;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.benefit-card:hover h3 {
    color: #7ec850;
}

/* Enhanced Contact Section */
.contact {
    background: linear-gradient(135deg, rgba(53, 92, 125, 0.95) 0%, rgba(53, 92, 125, 0.9) 100%);
    padding: 8rem 0;
    margin: 4rem 0;
    border-radius: 40px;
    color: white;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(126, 200, 80, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
    url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='40' cy='40' r='6'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 0;
    animation: backgroundShift 25s ease-in-out infinite;
}

.contact-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.contact h2 {
    font-size: 3.5rem;
    margin-bottom: 2.5rem;
    font-weight: 900;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    color: white;
    position: relative;
}

.contact h2::before {
    content: "";
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, rgba(126, 200, 80, 0.2), rgba(255, 255, 255, 0.1));
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

.contact p {
    font-size: 1.4rem;
    margin-bottom: 4rem;
    opacity: 0.95;
    color: white;
    font-weight: 500;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.contact-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    padding: 4rem 2.5rem;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    transform: translateY(30px);
    opacity: 0;
    animation: slideInUp 0.8s ease forwards;
}

.contact-card:nth-child(1) {
    animation-delay: 0.1s;
}
.contact-card:nth-child(2) {
    animation-delay: 0.2s;
}
.contact-card:nth-child(3) {
    animation-delay: 0.3s;
}

.contact-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.8s ease;
}

.contact-card:hover::before {
    left: 100%;
}

.contact-card:hover {
    transform: translateY(-15px) scale(1.03);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border-color: rgba(126, 200, 80, 0.5);
}

.contact-card h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #7ec850;
    font-weight: 700;
    position: relative;
}

.contact-card h3::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background: #7ec850;
    border-radius: 2px;
    transition: width 0.3s ease;
}

.contact-card:hover h3::after {
    width: 100px;
}

.contact-card p {
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    color: white;
    font-weight: 600;
}

.contact-card a {
    color: #7ec850;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.4s ease;
    position: relative;
}

.contact-card a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: white;
    transition: width 0.3s ease;
}

.contact-card a:hover {
    color: white;
    text-shadow: 0 0 15px rgba(126, 200, 80, 0.8);
    transform: translateY(-2px);
}

.contact-card a:hover::after {
    width: 100%;
}

/* Enhanced Pricing Section */
.pricing {
    background: rgba(255, 255, 255, 0.95);
    padding: 8rem 0;
    margin: 4rem 0;
    border-radius: 40px;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(53, 92, 125, 0.1);
    border: 1px solid rgba(126, 200, 80, 0.2);
    position: relative;
    overflow: hidden;
}

.pricing::before {
    content: "";
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: linear-gradient(45deg, rgba(126, 200, 80, 0.08), rgba(53, 92, 125, 0.08));
    border-radius: 50%;
    animation: float 15s ease-in-out infinite reverse;
}

.pricing h2 {
    text-align: center;
    font-size: 3.5rem;
    color: #355c7d;
    margin-bottom: 5rem;
    font-weight: 900;
    position: relative;
    z-index: 1;
}

.pricing h2::after {
    content: "";
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 6px;
    background: linear-gradient(90deg, #7ec850, #355c7d, #7ec850);
    border-radius: 3px;
    animation: expand 3s ease-in-out infinite;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.pricing-card {
    background: rgba(250, 248, 244, 0.9);
    padding: 4rem 2.5rem;
    border-radius: 30px;
    text-align: center;
    border: 2px solid rgba(126, 200, 80, 0.2);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    transform: translateY(30px);
    opacity: 0;
    animation: slideInUp 0.8s ease forwards;
}

.pricing-card:nth-child(1) {
    animation-delay: 0.1s;
}
.pricing-card:nth-child(2) {
    animation-delay: 0.2s;
}
.pricing-card:nth-child(3) {
    animation-delay: 0.3s;
}

.pricing-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(126, 200, 80, 0.1), transparent);
    transition: left 0.8s ease;
}

.pricing-card:hover::before {
    left: 100%;
}

.pricing-card:hover {
    border-color: #7ec850;
    transform: translateY(-20px) scale(1.05);
    box-shadow: 0 30px 60px rgba(126, 200, 80, 0.25);
    background: rgba(255, 255, 255, 0.98);
}

.pricing-card.featured {
    border-color: #7ec850;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 25px 50px rgba(126, 200, 80, 0.2);
    transform: scale(1.08) translateY(0);
}

.pricing-card.featured::after {
    content: "BELIEBT";
    position: absolute;
    top: 20px;
    right: -30px;
    background: linear-gradient(45deg, #7ec850, #6bb142);
    color: white;
    padding: 8px 40px;
    font-size: 0.9rem;
    font-weight: 700;
    transform: rotate(45deg);
    box-shadow: 0 4px 8px rgba(126, 200, 80, 0.3);
}

.pricing-card h3 {
    font-size: 2rem;
    color: #355c7d;
    margin-bottom: 2.5rem;
    font-weight: 700;
    transition: color 0.3s ease;
}

.pricing-card:hover h3 {
    color: #7ec850;
}

.pricing-card:nth-child(4) {
    grid-column: 2 / 3; /* 4. Karte soll mittig in der 2. Reihe stehen */
}

.price {
    /*font-size: 3.5rem;*/
    font-size: 3rem;
    font-weight: 900;
    color: #355c7d;
    margin-bottom: 0.8rem;
    transition: all 0.3s ease;
}

.pricing-card:hover .price {
    color: #7ec850;
    transform: scale(1.1);
}

.price-period {
    color: #2e2e2e;
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.8;
}

.price-prefix {
    font-size: 1.6rem;
    font-weight: normal;
    color: #2e2e2e;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 4rem 0;
    position: relative;
    z-index: 1;
    @media(max-width: 768px) {
        padding: 2rem 0;
    }
}

/* Enhanced Footer */
footer {
    background: linear-gradient(135deg, #355c7d 0%, #2a4a63 100%);
    color: white;
    padding: 5rem 0 2.5rem;
    margin-top: 4rem;
    border-radius: 40px 40px 0 0;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(126, 200, 80, 0.1) 0%, transparent 50%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.footer-phone {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 2rem;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.footer-phone::before {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, transparent, rgba(126, 200, 80, 0.1), transparent);
    border-radius: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-phone:hover::before {
    opacity: 1;
}

.footer-phone:hover {
    transform: scale(1.08) translateY(-3px);
    text-shadow: 0 0 20px rgba(126, 200, 80, 0.6);
}

.footer-phone svg {
    width: 40px;
    height: 40px;
    fill: #7ec850;
    filter: drop-shadow(0 4px 8px rgba(126, 200, 80, 0.4));
    transition: all 0.3s ease;
}

.footer-phone:hover svg {
    transform: rotate(10deg) scale(1.2);
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 25px;
}

.footer-links a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(126, 200, 80, 0.2), rgba(255, 255, 255, 0.1));
    border-radius: 25px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-links a::after {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #7ec850;
    transition: width 0.4s ease;
    border-radius: 1px;
}

.footer-links a:hover::before {
    opacity: 1;
}

.footer-links a:hover {
    color: white;
    transform: translateY(-3px);
}

.footer-links a:hover::after {
    width: 80%;
}

.altFooter .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-direction: row-reverse;

}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        display: none;
    }

    .hero {
        padding: 8rem 0 5rem;
        min-height: 80vh;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 5rem;
    }

    .hero-text h1 {
        font-size: 3rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 4rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }

    .container,
    .container-small {
        padding: 0 15px;
    }

    .services-preview,
    .about,
    .for-relatives,
    .contact,
    .pricing {
        margin: 3rem 0;
        padding: 5rem 0;
        border-radius: 30px;
    }

    .floating-shape {
        display: none;
    }
    .pricing-card:nth-child(4) {
        grid-column: auto !important;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }

    .services-preview h2,
    .about h2,
    .for-relatives h2,
    .pricing h2,
    .contact h2 {
        font-size: 2.5rem;
    }

    .service-item,
    .benefit-card,
    .pricing-card {
        padding: 2.5rem 2rem;
    }

    .contact-card {
        padding: 3rem 2rem;
    }

    .hero {
        min-height: 70vh;
    }
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Back link styling */
.back-link {
    color: #7ec850;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.back-link::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(126, 200, 80, 0.1), transparent);
    transition: left 0.6s ease;
}

.back-link:hover::before {
    left: 100%;
}

.back-link:hover {
    transform: translateX(-8px) scale(1.05);
    border-color: #7ec850;
    background: rgba(126, 200, 80, 0.1);
    color: #355c7d;
}

/* Main content styling for legal pages */
.main-content {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: 5rem;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(53, 92, 125, 0.1);
    margin-bottom: 4rem;
    border: 1px solid rgba(126, 200, 80, 0.2);
    position: relative;
    overflow: hidden;
}

.main-content::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, rgba(126, 200, 80, 0.05), rgba(53, 92, 125, 0.05));
    border-radius: 50%;
    animation: float 10s ease-in-out infinite;
}

.main-content h1 {
    font-size: 3.5rem;
    color: #355c7d;
    margin-bottom: 3rem;
    font-weight: 900;
    position: relative;
}

.main-content h1::before {
    content: "";
    position: absolute;
    top: -15px;
    left: -15px;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #7ec850, #355c7d);
    border-radius: 50%;
    opacity: 0.1;
    animation: pulse 3s ease-in-out infinite;
}

.main-content h2 {
    font-size: 2rem;
    color: #355c7d;
    margin: 3.5rem 0 2rem 0;
    font-weight: 700;
    position: relative;
}

.main-content h2::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #7ec850, #355c7d);
    border-radius: 2px;
}

.main-content h3 {
    font-size: 1.6rem;
    color: #355c7d;
    margin: 2.5rem 0 1.5rem 0;
    font-weight: 600;
}

.main-content p {
    margin-bottom: 2rem;
    line-height: 1.8;
    color: #2e2e2e;
    font-size: 1.1rem;
}

.contact-info,
.highlight-box,
.contact-box {
    background: linear-gradient(135deg, rgba(126, 200, 80, 0.12) 0%, rgba(126, 200, 80, 0.06) 100%);
    padding: 3rem;
    border-radius: 25px;
    margin: 3rem 0;
    border-left: 5px solid #7ec850;
    box-shadow: 0 10px 30px rgba(126, 200, 80, 0.15);
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: "";
    position: absolute;
    top: 0;
    right: -50px;
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, rgba(126, 200, 80, 0.1), rgba(53, 92, 125, 0.1));
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.contact-info h3 {
    color: #355c7d;
    margin-bottom: 2rem;
    font-size: 1.6rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.contact-info p {
    margin-bottom: 1rem;
    color: #2e2e2e;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .main-content {
        padding: 3rem 2rem;
        border-radius: 25px;
    }

    .main-content h1 {
        font-size: 2.8rem;
    }

    .main-content h2 {
        font-size: 1.8rem;
    }

    .contact-info,
    .highlight-box,
    .contact-box {
        padding: 2.5rem 2rem;
    }
}

/* Pulse animation */
@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 0.1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.2;
    }
}


/* --- Price-Badge für Leistungsboxen --- */
.price-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #7EC850; /* grüner Akzent */
    color: #ffffff;
    font-weight: 800;
    font-size: 0.95rem;
    padding: 0.35rem 0.7rem;
    border-radius: 9999px;
    line-height: 1;
    box-shadow: 0 6px 16px rgba(126, 200, 80, 0.25);
    border: 2px solid rgba(255,255,255,0.5);
    transform: translateY(0);
    transition: transform .2s ease, box-shadow .2s ease;
}
.service-item:hover .price-badge {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(126, 200, 80, 0.35);
}

/* ===== FAQ – Site-Style, Ausrichtung, Typo, Animation (Transition per CSS) ===== */

/* Sektion-Container */
.faq {
    background: rgba(255, 255, 255, 0.95);
    padding: 8rem 0;
    margin: 4rem 0;
    border-radius: 40px;
    backdrop-filter: blur(16px);
    border: 1px solid rgba(126, 200, 80, 0.2);
    box-shadow: 0 20px 60px rgba(53, 92, 125, 0.08);
}

/* Überschrift */
.faq h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: clamp(2.1rem, 1.6rem + 1.4vw, 2.8rem);
    letter-spacing: .2px;
}

/* Liste füllt die Container-Breite */
.faq .faq-list {
    width: 100%;
    display: grid;
    gap: 16px;
    margin-inline: 0;
}

/* Einträge im Card-Stil */
.faq .faq-list details {
    background: rgba(250, 248, 244, 0.9);
    border: 2px solid rgba(126, 200, 80, 0.2);
    border-radius: 30px; /* match .service-item */
    padding: 1rem 1.25rem;
    transition:
            transform .35s cubic-bezier(0.4, 0, 0.2, 1),
            border-color .35s cubic-bezier(0.4, 0, 0.2, 1),
            box-shadow .35s cubic-bezier(0.4, 0, 0.2, 1),
            background .35s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq .faq-list details:hover {
    transform: translateY(-2px);
    border-color: rgba(126, 200, 80, 0.35);
    box-shadow: 0 12px 34px rgba(53, 92, 125, 0.12);
    background: rgba(250, 248, 244, 0.95);
}
.faq .faq-list details[open] {
    border-color: rgba(126, 200, 80, 0.45);
    box-shadow: 0 10px 30px rgba(53, 92, 125, 0.08);
}

/* Summary (Headline) */
.faq .faq-list summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 800;
    color: #355C7D;
    font-size: clamp(1.2rem, 1.05rem + 0.8vw, 1.5rem);
    outline: none;
    user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
    touch-action: manipulation;
}
.faq .faq-list summary::-webkit-details-marker { display: none; }

/* kein linker Balken */
.faq .faq-list summary::before { content: none !important; }

/* Icon +/– rechts */
.faq .faq-list summary::after {
    content: "+";
    margin-left: auto;
    font-weight: 900;
    transition: transform .25s ease, opacity .25s ease, color .25s ease;
}
.faq .faq-list details[open] summary::after {
    content: "–";
    transform: rotate(0.0001turn);
    color: #7EC850;
}

/* Inhalt – Transition per CSS, Werte setzt JS */
.faq .faq-answer {
    overflow: hidden;
    height: 0;          /* JS: 0 -> px -> auto */
    opacity: 0;         /* weiches Ein-/Ausblenden */
    margin-top: 0;      /* JS setzt auf .5rem beim Öffnen */
    transition:
            height .40s cubic-bezier(0.4, 0, 0.2, 1),
            opacity .30s cubic-bezier(0.4, 0, 0.2, 1),
            margin-top .30s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: height, opacity, margin-top;
}

/* Typografie im Inhalt */
.faq .faq-answer,
.faq .faq-answer p,
.faq .faq-answer li {
    color: #2f2f2f;
    line-height: 1.7;
    font-size: clamp(1.05rem, 0.98rem + 0.3vw, 1.2rem);
}

/* Mobile Tweaks */
@media (max-width: 640px) {
    .faq { padding: 6rem 0; }
    .faq .faq-list { gap: 12px; }
}




