* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --soft-leaf-green: #BEE5C2;
    --sage-mist: #98C7AA;
    --warm-bark-brown: #8A6F52;
    --soft-petal-pink: #F6D7E4;
    --creamy-garden-white: #FAF8F2;
    --white: #FFFFFF;
    --shadow-soft: rgba(142, 167, 152, 0.15);
    --shadow-medium: rgba(142, 167, 152, 0.25);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--warm-bark-brown);
    background-color: var(--creamy-garden-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Marcellus', serif;
    color: var(--warm-bark-brown);
    font-weight: 400;
    line-height: 1.3;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    color: var(--warm-bark-brown);
}

a {
    color: var(--sage-mist);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--soft-leaf-green);
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.header {
    background: linear-gradient(135deg, var(--soft-leaf-green), var(--sage-mist));
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px var(--shadow-soft);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo {
    font-family: 'Marcellus', serif;
    font-size: 1.8rem;
    color: var(--warm-bark-brown);
    font-weight: 400;
    letter-spacing: 1px;
}

.nav {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    list-style: none;
}

.nav a {
    color: var(--warm-bark-brown);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--soft-petal-pink);
    transition: width 0.3s ease;
}

.nav a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--warm-bark-brown);
    cursor: pointer;
    position: relative;
    z-index: 1001;
    padding: 0.5rem;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
}

.mobile-menu-toggle .menu-icon,
.mobile-menu-toggle .close-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease, transform 0.3s ease;
    width: 24px;
    height: 24px;
}

.mobile-menu-toggle .close-icon {
    display: none;
    opacity: 0;
    transform: translate(-50%, -50%) rotate(90deg);
}

.mobile-menu-toggle .menu-icon {
    display: block;
    opacity: 1;
}

.mobile-menu-toggle.active .menu-icon {
    display: none !important;
    opacity: 0;
    transform: translate(-50%, -50%) rotate(-90deg);
}

.mobile-menu-toggle.active .close-icon {
    display: block !important;
    opacity: 1;
    transform: translate(-50%, -50%) rotate(0deg);
}

.hero {
    background: linear-gradient(135deg, var(--soft-leaf-green), var(--sage-mist));
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 0 0 60% 60% / 0 0 30% 30%;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: var(--soft-petal-pink);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 250px;
    height: 250px;
    background: var(--creamy-garden-white);
    border-radius: 50%;
    opacity: 0.4;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    color: var(--warm-bark-brown);
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--warm-bark-brown);
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--sage-mist), var(--soft-leaf-green));
    color: var(--warm-bark-brown);
    box-shadow: 0 4px 15px var(--shadow-medium);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px var(--shadow-medium);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-secondary {
    background: var(--soft-petal-pink);
    color: var(--warm-bark-brown);
}

.btn-secondary:hover {
    background: var(--sage-mist);
    transform: translateY(-2px);
}

.section {
    padding: 5rem 0;
    position: relative;
}

.section-alt {
    background: linear-gradient(to bottom, var(--creamy-garden-white), var(--soft-leaf-green));
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '🌿';
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
}

.card {
    background: var(--white);
    border-radius: 30px;
    padding: 2rem;
    box-shadow: 0 8px 25px var(--shadow-soft);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, var(--soft-leaf-green), transparent);
    opacity: 0;
    transition: opacity 0.5s;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px var(--shadow-medium);
}

.card:hover::before {
    opacity: 0.1;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--soft-leaf-green), var(--sage-mist));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--warm-bark-brown);
}

.card h3 {
    margin-bottom: 1rem;
}

.service-tile {
    background: linear-gradient(135deg, var(--white), var(--soft-leaf-green));
    border-radius: 25px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 20px var(--shadow-soft);
    transition: all 0.4s ease;
}

.service-tile::before {
    content: '🍃';
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 2rem;
    opacity: 0.3;
}

.service-tile:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 10px 30px var(--shadow-medium);
}

.service-tile-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-tile h3 {
    margin-bottom: 1rem;
}

.pricing-card {
    background: var(--white);
    border-radius: 35px;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    box-shadow: 0 8px 25px var(--shadow-soft);
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--shadow-medium);
}

.pricing-card.featured {
    background: linear-gradient(135deg, var(--soft-petal-pink), var(--soft-leaf-green));
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--soft-petal-pink);
    color: var(--warm-bark-brown);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.pricing-price {
    font-size: 3rem;
    font-family: 'Marcellus', serif;
    color: var(--warm-bark-brown);
    margin: 1.5rem 0;
}

.pricing-features {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.pricing-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--soft-leaf-green);
    position: relative;
    padding-left: 2rem;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--sage-mist);
    font-weight: bold;
    font-size: 1.2rem;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    padding: 2rem 0;
}

.gallery-item {
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
    box-shadow: 0 6px 20px var(--shadow-soft);
    transition: all 0.4s ease, opacity 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    opacity: 1;
    transform: scale(1);
}

.gallery-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 35px var(--shadow-medium);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    border: 2px solid var(--sage-mist);
    background: var(--white);
    color: var(--warm-bark-brown);
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--sage-mist);
    color: var(--white);
}

.testimonial-card {
    background: linear-gradient(135deg, var(--white), var(--soft-petal-pink));
    border-radius: 30px;
    padding: 2.5rem;
    position: relative;
    box-shadow: 0 8px 25px var(--shadow-soft);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 6rem;
    color: var(--sage-mist);
    opacity: 0.3;
    font-family: 'Marcellus', serif;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.testimonial-author {
    font-weight: 600;
    color: var(--warm-bark-brown);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--warm-bark-brown);
    font-weight: 600;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--soft-leaf-green);
    border-radius: 15px;
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    background: var(--white);
    color: var(--warm-bark-brown);
    transition: all 0.3s ease;
    pointer-events: auto;
    position: relative;
    z-index: 1;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--sage-mist);
    box-shadow: 0 0 0 3px rgba(152, 199, 170, 0.2);
}

.form-input:disabled,
.form-textarea:disabled,
.form-select:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
    pointer-events: auto !important;
    -webkit-user-select: text !important;
    user-select: text !important;
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

.faq-item {
    background: var(--white);
    border-radius: 20px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 15px var(--shadow-soft);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, var(--soft-leaf-green), var(--sage-mist));
    color: var(--warm-bark-brown);
    font-weight: 600;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(135deg, var(--sage-mist), var(--soft-leaf-green));
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 1.5rem;
}

.faq-answer.active {
    max-height: 500px;
    padding: 1.5rem;
}

.footer {
    background: linear-gradient(135deg, var(--sage-mist), var(--warm-bark-brown));
    color: var(--creamy-garden-white);
    padding: 3rem 0 1.5rem;
    text-align: center;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--creamy-garden-white);
    margin-bottom: 1rem;
}

.footer-section a {
    color: var(--soft-leaf-green);
}

.footer-section a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1.5rem;
    margin-top: 2rem;
}

.blog-card {
    background: var(--white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 6px 20px var(--shadow-soft);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px var(--shadow-medium);
}

.blog-card-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--soft-leaf-green), var(--sage-mist));
    object-fit: cover;
}

.blog-card-content {
    padding: 2rem;
}

.blog-card-date {
    color: var(--sage-mist);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.organic-shape {
    position: absolute;
    border-radius: 50% 40% 60% 30%;
    opacity: 0.1;
    pointer-events: none;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--soft-petal-pink);
    top: 10%;
    right: -5%;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: var(--sage-mist);
    bottom: 20%;
    left: -3%;
}

.text-center {
    text-align: center;
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex !important;
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
    }

    .header-content {
        position: relative;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
    }

    .nav {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, var(--soft-leaf-green), var(--sage-mist));
        padding: 1.5rem;
        box-shadow: 0 4px 20px var(--shadow-medium);
        z-index: 1000;
        width: 100%;
        flex-direction: column;
        gap: 0.5rem;
        margin-top: 0;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

    .nav.active {
        display: flex;
    }

    .nav li {
        width: 100%;
    }

    .nav a {
        display: block;
        padding: 0.75rem 1rem;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .nav a:hover::after {
        width: 0;
    }

    .hero {
        padding: 3rem 1rem;
        border-radius: 0 0 40% 40% / 0 0 20% 20%;
    }

    .section {
        padding: 3rem 0;
    }

    .container {
        padding: 0 1.5rem;
    }

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .gallery {
        grid-template-columns: 1fr;
    }

    .logo {
        font-size: 1.5rem;
    }

    .card,
    .service-tile,
    .pricing-card {
        padding: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .section-title h2::after {
        display: none;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    .section .container > div[style*="grid-template-columns: repeat(3, 1fr)"],
    .section .container div[style*="grid-template-columns: repeat(3, 1fr)"] {
        grid-template-columns: 1fr !important;
    }

    .section .container > div[style*="grid-template-columns: repeat(2, 1fr)"],
    .section .container div[style*="grid-template-columns: repeat(2, 1fr)"] {
        grid-template-columns: 1fr !important;
    }

    .section .container > div[style*="grid-template-columns: 1fr 1fr"],
    .section .container div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }

    .section .container > div[style*="flex: 1"] {
        min-width: 0 !important;
        flex-basis: 100% !important;
    }

    .section .container > div[style*="display: flex"][style*="flex-wrap: wrap"] {
        flex-direction: column !important;
    }

    .section .container > div[style*="gap: 3rem"] {
        gap: 2rem !important;
    }

    .section .container > div[style*="gap: 2rem"] {
        gap: 1.5rem !important;
    }

    .section .container div[style*="padding: 3rem"] {
        padding: 2rem !important;
    }

    .section .container div[style*="margin-bottom: 3rem"] {
        margin-bottom: 2rem !important;
    }

    .section .container div[style*="max-width: 1000px"],
    .section .container div[style*="max-width: 900px"] {
        max-width: 100% !important;
    }

    img {
        max-width: 100%;
        height: auto;
    }

    .section .container div[style*="height: 400px"] {
        height: 250px !important;
    }

    .section .container div[style*="height: 300px"] {
        height: 200px !important;
    }

    .section .container div[style*="width: 80px"][style*="height: 80px"] {
        width: 60px !important;
        height: 60px !important;
    }

    .section .container div[style*="width: 100px"][style*="height: 100px"] {
        width: 70px !important;
        height: 70px !important;
    }

    .section .container div[style*="font-size: 1.2rem"] {
        font-size: 1.1rem !important;
    }

    .section .container div[style*="font-size: 1.1rem"] {
        font-size: 1rem !important;
    }

    .section .container div[style*="border-radius: 30px"] {
        border-radius: 20px !important;
    }

    .section .container div[style*="border-radius: 25px"] {
        border-radius: 15px !important;
    }

    .section .container div[style*="box-shadow: 0 10px 40px"] {
        box-shadow: 0 6px 25px var(--shadow-medium) !important;
    }

    .section .container div[style*="box-shadow: 0 8px 25px"] {
        box-shadow: 0 5px 20px var(--shadow-soft) !important;
    }

    .section .container div[style*="margin-top: -30px"] {
        margin-top: -20px !important;
    }

    .section .container div[style*="padding: 1.5rem"] {
        padding: 1.25rem !important;
    }

    .section .container div[style*="text-align: center"] {
        padding: 0 1rem;
    }

    .btn {
        padding: 0.875rem 1.75rem;
        font-size: 0.95rem;
    }

    .form-input,
    .form-textarea,
    .form-select {
        padding: 0.875rem;
        font-size: 0.95rem;
    }

    table {
        font-size: 0.9rem;
    }

    table th,
    table td {
        padding: 0.75rem !important;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .btn {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }

    .card,
    .service-tile,
    .pricing-card {
        padding: 1.5rem;
    }
}

@media (max-width: 320px) {
    .hero {
        padding: 2rem 0.5rem;
    }

    .section {
        padding: 2rem 0;
    }

    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    .container {
        padding: 0 10px;
    }

    .logo {
        font-size: 1rem;
    }

    .btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.85rem;
    }

    .card,
    .service-tile,
    .pricing-card {
        padding: 1rem;
        border-radius: 20px;
    }

    .card-icon {
        width: 50px;
        height: 50px;
    }

    .gallery {
        gap: 1rem;
    }

    .footer {
        padding: 2rem 0 1rem;
    }

    .footer-section {
        margin-bottom: 1.5rem;
    }

    .mobile-menu-toggle {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }

    .mobile-menu-toggle .menu-icon,
    .mobile-menu-toggle .close-icon {
        width: 20px;
        height: 20px;
    }

    .section .container > div[style*="flex: 1"] {
        min-width: 250px !important;
    }

    .section .container > div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }

    .section .container > div[style*="grid-template-columns: repeat(3, 1fr)"],
    .section .container div[style*="grid-template-columns: repeat(3, 1fr)"] {
        grid-template-columns: 1fr !important;
    }

    .section .container > div[style*="grid-template-columns: repeat(2, 1fr)"],
    .section .container div[style*="grid-template-columns: repeat(2, 1fr)"] {
        grid-template-columns: 1fr !important;
    }

    .section .container > div[style*="gap: 3rem"] {
        gap: 1.5rem !important;
    }

    .section .container > div[style*="gap: 2rem"] {
        gap: 1rem !important;
    }

    .section .container > div[style*="gap: 1.5rem"] {
        gap: 1rem !important;
    }

    .section .container div[style*="height: 400px"] {
        height: 250px !important;
    }

    .section .container div[style*="height: 300px"] {
        height: 200px !important;
    }

    .section .container div[style*="padding: 3rem"] {
        padding: 1.5rem !important;
    }

    .section .container div[style*="padding: 2rem"] {
        padding: 1rem !important;
    }

    .section .container div[style*="margin-bottom: 3rem"] {
        margin-bottom: 1.5rem !important;
    }

    .section .container div[style*="margin-top: 2rem"] {
        margin-top: 1rem !important;
    }

    .section .container div[style*="width: 80px"][style*="height: 80px"] {
        width: 60px !important;
        height: 60px !important;
    }

    .section .container div[style*="width: 60px"][style*="height: 60px"] {
        width: 50px !important;
        height: 50px !important;
    }

    .section .container div[style*="width: 150px"][style*="height: 150px"] {
        width: 100px !important;
        height: 100px !important;
    }

    img {
        max-width: 100%;
        height: auto;
    }

    .section .container > div[style*="max-width: 1000px"] {
        max-width: 100% !important;
    }

    .section .container > div[style*="flex-wrap: wrap"] {
        gap: 1rem !important;
    }

    .section .container div[style*="font-size: 1.1rem"] {
        font-size: 1rem !important;
    }

    .section .container div[style*="font-size: 1.2rem"] {
        font-size: 1rem !important;
    }

    .section .container div[style*="width: 100px"][style*="height: 100px"] {
        width: 60px !important;
        height: 60px !important;
    }

    .section .container div[style*="width: 80px"][style*="height: 80px"]:not([style*="width: 80px; height: 80px"]) {
        width: 60px !important;
        height: 60px !important;
    }

    .section .container div[style*="gap: 1.5rem"] {
        gap: 1rem !important;
    }

    .section .container div[style*="gap: 1rem"] {
        gap: 0.75rem !important;
    }

    .section .container div[style*="max-width: 900px"] {
        max-width: 100% !important;
    }

    .section .container div[style*="margin-bottom: 2rem"] {
        margin-bottom: 1rem !important;
    }

    .section .container div[style*="margin-top: -30px"] {
        margin-top: -20px !important;
    }

    .section .container div[style*="padding: 1.5rem"] {
        padding: 1rem !important;
    }

    .section .container div[style*="border-radius: 30px"] {
        border-radius: 20px !important;
    }

    .section .container div[style*="border-radius: 25px"] {
        border-radius: 15px !important;
    }

    .section .container div[style*="box-shadow: 0 10px 40px"] {
        box-shadow: 0 6px 20px var(--shadow-medium) !important;
    }

    .section .container div[style*="box-shadow: 0 8px 25px"] {
        box-shadow: 0 4px 15px var(--shadow-soft) !important;
    }

    .section .container div[style*="box-shadow: 0 6px 20px"] {
        box-shadow: 0 4px 15px var(--shadow-soft) !important;
    }

    .section .container div[style*="box-shadow: 0 4px 15px"] {
        box-shadow: 0 3px 10px var(--shadow-soft) !important;
    }

    input[type="text"],
    input[type="email"],
    input[type="tel"],
    textarea {
        font-size: 16px !important;
        padding: 0.75rem !important;
    }

    table {
        font-size: 0.85rem;
    }

    table th,
    table td {
        padding: 0.5rem !important;
    }

    .faq-item {
        margin-bottom: 1rem !important;
    }

    .faq-question {
        font-size: 1rem !important;
        padding: 1rem !important;
    }

    .faq-answer {
        font-size: 0.9rem !important;
    }

    .blog-card {
        margin-bottom: 1.5rem !important;
    }

    .blog-card-image {
        height: 150px !important;
    }

    .blog-card-content {
        padding: 1rem !important;
    }

    form {
        padding: 1rem !important;
    }

    .pricing-card {
        margin-bottom: 1rem !important;
    }

    .service-tile {
        margin-bottom: 1rem !important;
    }

    * {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .section .container > div {
        max-width: 100%;
        overflow-x: hidden;
    }

    .section .container div[style*="text-align: center"] {
        padding: 0 0.5rem;
    }

    h1, h2, h3, h4, h5, h6 {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    p {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .header-content {
        padding: 0 0.5rem;
    }

    .footer-content {
        gap: 1rem !important;
    }

    .footer-section {
        min-width: 100% !important;
    }

    .section .container div[style*="flex: 1"] {
        flex-basis: 100% !important;
        min-width: 0 !important;
    }

    .section .container > div[style*="display: flex"][style*="flex-wrap: wrap"] {
        flex-direction: column !important;
    }

    .section .container > div[style*="display: grid"] {
        grid-auto-flow: row !important;
    }
}

.leaf-float {
    animation: leafFloat 8s ease-in-out infinite;
}

.leaf-float .form-input,
.leaf-float .form-textarea,
.leaf-float .form-select,
.leaf-float input,
.leaf-float textarea,
.leaf-float select {
    animation: none !important;
    transform: none !important;
}

.card:has(form) {
    animation: none !important;
    pointer-events: auto;
    position: relative;
    z-index: 1;
}

.card:has(.form-input),
.card:has(.form-textarea),
.card:has(.form-select) {
    animation: none !important;
    pointer-events: auto;
    position: relative;
    z-index: 1;
}

form {
    pointer-events: auto;
    position: relative;
    z-index: 1;
}

.form-group {
    pointer-events: auto;
    position: relative;
    z-index: 1;
}

@keyframes leafFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-15px) rotate(5deg);
    }
    50% {
        transform: translateY(-25px) rotate(-5deg);
    }
    75% {
        transform: translateY(-15px) rotate(3deg);
    }
}

.system-page {
    background: white;
    color: black;
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.system-page h1,
.system-page h2,
.system-page h3 {
    color: black;
    font-family: Arial, sans-serif;
}

.system-page a {
    color: #0066cc;
}

