
        :root {
            --sage: #8a9a8b;
            --sage-light: #c8d5b9;
            --ivory: #faf9f0;
            --antique-rose: #d4a59a;
            --soft-brown: #b7a99a;
            --dark-brown: #5a4a42;
            --box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Lora', serif;
            color: var(--dark-brown);
            background-color: var(--ivory);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        section {
            /* padding: 80px 0; */
            position: relative;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            min-height: 600px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(138, 154, 139, 0.3), rgba(138, 154, 139, 0.5));
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            color: var(--ivory);
            max-width: 800px;
            padding: 0 20px;
            transform: translateY(20px);
            opacity: 0;
            animation: fadeInUp 1s ease-out forwards;
        }

        @keyframes fadeInUp {
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .hero h1 {
            font-size: 4rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .hero p {
            font-size: 1.5rem;
            font-style: italic;
            margin-bottom: 40px;
        }

        .scroll-down {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            color: var(--ivory);
            font-size: 2rem;
            animation: bounce 2s infinite;
            cursor: pointer;
            z-index: 2;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {transform: translateY(0) translateX(-50%);}
            40% {transform: translateY(-20px) translateX(-50%);}
            60% {transform: translateY(-10px) translateX(-50%);}
        }

        /* Section Styles */
        .section-title {
            text-align: center;
            /* margin-bottom: 60px; */
            color: var(--dark-brown);
        }

        .section-title h2 {
            font-size: 2.5rem;
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--antique-rose);
        }

        /* Garden Style Section */
        .garden-style {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            margin-bottom: 60px;
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .garden-style.visible {
            opacity: 1;
        }

        .garden-style:nth-child(even) .style-image {
            order: 2;
        }

        .style-image, .style-content {
            flex: 1;
            min-width: 300px;
            padding: 20px;
        }

        .style-image {
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--box-shadow);
            transition: transform 0.3s ease;
        }

        .style-image:hover {
            transform: scale(1.02);
        }

        .style-image img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }

        .style-content h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--sage);
        }

        .style-content p {
            margin-bottom: 20px;
            font-size: 1.1rem;
        }

        .features-list {
            list-style: none;
        }

        .features-list li {
            margin-bottom: 10px;
            position: relative;
            padding-left: 30px;
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.2rem;
        }

        .features-list li::before {
            content: '\f06c';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            color: var(--antique-rose);
            position: absolute;
            left: 0;
            top: 2px;
        }

        /* Timeless Elements Section */
        .elements-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .element-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--box-shadow);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;
        }

        .element-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
        }

        .element-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .element-info {
            padding: 20px;
            text-align: center;
        }

        .element-info h4 {
            font-family: 'Playfair Display', serif;
            margin-bottom: 10px;
            color: var(--sage);
        }

        /* Blog Section */
        .blog-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .blog-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--box-shadow);
            transition: transform 0.3s ease;
        }

        .blog-card:hover {
            transform: translateY(-5px);
        }

        .blog-image {
            height: 200px;
            overflow: hidden;
        }

        .blog-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .blog-card:hover .blog-image img {
            transform: scale(1.1);
        }

        .blog-content {
            padding: 20px;
        }

        .blog-content h3 {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: var(--sage);
        }

        .blog-content p {
            margin-bottom: 15px;
            font-size: 0.95rem;
        }

        .read-more {
            display: inline-block;
            padding: 8px 20px;
            background-color: var(--sage);
            color: white;
            text-decoration: none;
            border-radius: 4px;
            transition: background-color 0.3s ease;
        }

        .read-more:hover {
            background-color: var(--dark-brown);
        }

        /* Newsletter */
        .newsletter {
            background-color: var(--sage-light);
            padding: 60px 0;
            text-align: center;
            margin-top: 60px;
        }

        .newsletter h3 {
            font-size: 2rem;
            margin-bottom: 20px;
            color: var(--dark-brown);
        }

        .newsletter p {
            max-width: 600px;
            margin: 0 auto 30px;
        }

        .newsletter-form {
            display: flex;
            max-width: 500px;
            margin: 0 auto;
        }

        .newsletter-form input {
            flex: 1;
            padding: 15px;
            border: none;
            border-radius: 4px 0 0 4px;
            font-family: 'Lora', serif;
        }

        .newsletter-form button {
            padding: 15px 25px;
            background-color: var(--antique-rose);
            color: white;
            border: none;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .newsletter-form button:hover {
            background-color: var(--sage);
        }

        /* Footer */
        footer {
            background-color: var(--dark-brown);
            color: var(--ivory);
            text-align: center;
            padding: 30px 0;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            margin-bottom: 20px;
        }

        .footer-links a {
            color: var(--ivory);
            margin: 0 15px;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--antique-rose);
        }

        .social-icons {
            margin-bottom: 20px;
        }

        .social-icons a {
            color: var(--ivory);
            margin: 0 10px;
            font-size: 1.5rem;
            transition: color 0.3s ease;
        }

        .social-icons a:hover {
            color: var(--antique-rose);
        }

        /* Lightbox */
        .lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            z-index: 1000;
            justify-content: center;
            align-items: center;
        }

        .lightbox-content {
            max-width: 90%;
            max-height: 90%;
            position: relative;
        }

        .lightbox-content img {
            max-width: 100%;
            max-height: 80vh;
            display: block;
            margin: 0 auto;
        }

        .lightbox-caption {
            color: white;
            text-align: center;
            margin-top: 15px;
            font-size: 1.2rem;
        }

        .close-lightbox {
            position: absolute;
            top: -40px;
            right: 0;
            color: white;
            font-size: 2rem;
            cursor: pointer;
        }

        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background-color: var(--antique-rose);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 999;
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            background-color: var(--sage);
        }

        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1.2rem;
            }

            .garden-style .style-image, 
            .garden-style .style-content {
                flex: 100%;
            }

            .garden-style:nth-child(even) .style-image {
                order: 0;
            }

            .newsletter-form {
                flex-direction: column;
            }

            .newsletter-form input {
                border-radius: 4px;
                margin-bottom: 10px;
            }

            .newsletter-form button {
                border-radius: 4px;
            }
        }
  