       body {
            box-sizing: border-box;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

       body {
    font-family: 'Poppins', sans-serif;
    background-image: url('https://cdn.pixabay.com/photo/2020/03/31/19/20/dog-4988985_1280.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow-x: hidden;
}


        /* Background Pattern */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle at 20% 80%, rgba(205, 227, 209, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(250, 220, 217, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(246, 235, 217, 0.1) 0%, transparent 50%);
            z-index: -1;
            pointer-events: none;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid rgba(205, 227, 209, 0.3);
        }

        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            font-weight: 900;
            color: rgb(120, 189, 212);
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: #4A4A4A;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: #CDE3D1;
        }

        .login-btn {
            background: linear-gradient(135deg, #CDE3D1, #FADCD9);
            color: #4A4A4A;
            padding: 0.5rem 1.5rem;
            border: none;
            border-radius: 25px;
            cursor: pointer;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .login-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(205, 227, 209, 0.4);
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            display: grid;
            grid-template-columns: 1fr 2fr 1fr;
            gap: 2rem;
            padding: 0 2rem;
            margin-top: 80px;
            position: relative;
        }

        .marquee {
            height: 100%;
            overflow: hidden;
            position: relative;
            border-radius: 20px;
            mask: linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
        }

        .marquee-content {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            animation: marqueeDown 30s linear infinite;
        }

        .marquee.right .marquee-content {
            animation: marqueeUp 25s linear infinite;
        }

      .marquee-item {
    width: 100%;
    height: 200px;
    border-radius: 15px;
    /* Remove gradient */
    /* background: linear-gradient(45deg, #CDE3D1, #FADCD9); */
    
    /* Add background image */
    background-image: url('https://cdn.pixabay.com/photo/2020/03/31/19/20/dog-4988985_1280.jpg');
    background-size: cover;       /* Make the image cover the entire card */
    background-position: center;  /* Center the image */
    background-repeat: no-repeat; /* Do not repeat */

    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    transition: transform 0.3s ease;
}


        .marquee-item:hover {
            transform: scale(1.05);
        }

        @keyframes marqueeDown {
            0% { transform: translateY(-100%); }
            100% { transform: translateY(0%); }
        }

        @keyframes marqueeUp {
            0% { transform: translateY(0%); }
            100% { transform: translateY(-100%); }
        }

        .hero-center {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            position: relative;
        }

        .slideshow {
            width: 100%;
            max-width: 600px;
        }

        .slide {
            display: none;
            animation: fadeIn 1s ease-in-out;
        }

        .slide.active {
            display: block;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .hero-title {
            font-family: 'Playfair Display', serif;
            font-size: 3.5rem;
            color: #4A4A4A;
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .hero-subtitle {
            font-size: 1.2rem;
            color: #4A4A4A;
            margin-bottom: 2rem;
            opacity: 0.8;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            justify-content: center;
        }

        .btn-primary {
            background: linear-gradient(135deg, #CDE3D1, #A8D5BA);
            color: #4A4A4A;
            padding: 1rem 2rem;
            border: none;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(205, 227, 209, 0.4);
        }

        .btn-secondary {
            background: transparent;
            color: #4A4A4A;
            padding: 1rem 2rem;
            border: 2px solid #FADCD9;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .btn-secondary:hover {
            background: #FADCD9;
            transform: translateY(-3px);
        }

        /* Floating Elements */
        .floating-paw {
            position: absolute;
            font-size: 2rem;
            opacity: 0.3;
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(10deg); }
        }

        /* How It Works Section */
        .how-it-works {
            padding: 5rem 2rem;
            background: lightblue;
            text-align: center;
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            color: #4A4A4A;
            margin-bottom: 3rem;
        }

        .steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .step {
            background: white;
            padding: 2rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
            opacity: 0;
            transform: translateY(50px);
        }

        .step.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .step:hover {
            transform: translateY(-10px);
        }

        .step-icon {
            font-size: 4rem;
            margin-bottom: 1rem;
        }

        .step-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            color: #4A4A4A;
            margin-bottom: 1rem;
        }

        .step-description {
            color: #666;
            line-height: 1.6;
        }

        /* Gallery Section */
       .gallery {
    padding: 5rem 2rem;
    background: lightblue;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    aspect-ratio: 1;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    color: white;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.6);

    /* Background image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Shine effect */
.gallery-item::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.6s ease;
}

.gallery-item:hover {
    transform: scale(1.08) rotate(2deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.gallery-item:hover::before {
    left: 100%;
}

/* Different images for each gallery item */
.gallery-item:nth-child(1) { background-image: url('https://cdn.pixabay.com/photo/2020/03/31/19/20/dog-4988985_1280.jpg'); }
.gallery-item:nth-child(2) { background-image: url('https://cdn.pixabay.com/photo/2017/02/20/18/03/cat-2083492_1280.jpg'); }
.gallery-item:nth-child(3) { background-image: url('https://cdn.pixabay.com/photo/2017/11/09/21/41/cat-2934720_1280.jpg'); }
.gallery-item:nth-child(4) { background-image: url('https://cdn.pixabay.com/photo/2024/10/22/01/17/cat-9138461_1280.jpg'); }
.gallery-item:nth-child(5) { background-image: url('https://cdn.pixabay.com/photo/2023/06/04/20/21/cat-8040862_1280.jpg'); }
.gallery-item:nth-child(6) { background-image: url('https://cdn.pixabay.com/photo/2014/06/21/08/43/rabbit-373691_1280.jpg'); }
.gallery-item:nth-child(7) { background-image: url('https://cdn.pixabay.com/photo/2025/07/25/11/24/cat-9734651_1280.jpg'); }
.gallery-item:nth-child(8) { background-image: url('https://cdn.pixabay.com/photo/2024/05/09/17/24/shih-tzu-8751508_1280.jpg'); }


        /* Pet Image Styles */
        .pet-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 15px;
            transition: all 0.4s ease;
        }

        .pet-image:hover {
            transform: scale(1.1);
            filter: brightness(1.1) saturate(1.2);
        }

        /* Image Container */
        .image-container {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            transition: all 0.3s ease;
        }

        .image-container::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(205, 227, 209, 0.1), rgba(250, 220, 217, 0.1));
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .image-container:hover::after {
            opacity: 1;
        }

        /* Testimonials */
        .testimonials {
            padding: 5rem 2rem;
            background: lightblue;
            text-align: center;
        }

        .testimonial-carousel {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
        }

        .testimonial {
            background: white;
            padding: 2rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            display: none;
        }

        .testimonial.active {
            display: block;
            animation: slideIn 0.5s ease-in-out;
        }

        @keyframes slideIn {
            from { opacity: 0; transform: translateX(50px); }
            to { opacity: 1; transform: translateX(0); }
        }

        .testimonial-text {
            font-style: italic;
            font-size: 1.1rem;
            color: #4A4A4A;
            margin-bottom: 1rem;
            line-height: 1.6;
        }

        .testimonial-author {
            font-weight: 600;
            background: rgb(131, 166, 177);
        }

        /* Upload Section */
        .upload-section {
            padding: 5rem 2rem;
            background: lightblue;
            text-align: center;
        }

        .upload-form {
            max-width: 600px;
            margin: 0 auto;
            padding: 3rem;
            border-radius: 25px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }

        .file-upload {
            border: 3px dashed #CDE3D1;
            border-radius: 15px;
            padding: 3rem;
            margin-bottom: 2rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .file-upload:hover {
            border-color: #FADCD9;
            background: #FFF8F0;
        }

        .form-group {
            margin-bottom: 1.5rem;
            text-align: left;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
            color: #4A4A4A;
        }

        .form-group select,
        .form-group input {
            width: 100%;
            padding: 1rem;
            border: 2px solid #F6EBD9;
            border-radius: 10px;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }

        .form-group select:focus,
        .form-group input:focus {
            outline: none;
            border-color: #CDE3D1;
        }

        /* Login Modal */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(10px);
            z-index: 2000;
            justify-content: center;
            align-items: center;
        }

        .modal.active {
            display: flex;
        }

        .modal-content {
            background: rgba(255, 248, 240, 0.95);
            backdrop-filter: blur(20px);
            padding: 3rem;
            border-radius: 25px;
            max-width: 400px;
            width: 90%;
            text-align: center;
            position: relative;
        }

        .close-modal {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: #4A4A4A;
        }

        .modal-title {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            color: #4A4A4A;
            margin-bottom: 2rem;
        }

        .modal-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .modal-form input {
            padding: 1rem;
            border: 2px solid #F6EBD9;
            border-radius: 10px;
            font-size: 1rem;
        }

        .modal-form input:focus {
            outline: none;
            border-color: #CDE3D1;
        }

        .modal-switch {
            margin-top: 1rem;
            color: #4A4A4A;
        }

        .modal-switch a {
            color: #CDE3D1;
            text-decoration: none;
            font-weight: 500;
        }

        /* Footer */
        footer {
            background: #FFF8F0;
            padding: 3rem 2rem 1rem;
            position: relative;
        }

        .footer-wave {
            position: absolute;
            top: -1px;
            left: 0;
            width: 100%;
            height: 50px;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120'%3E%3Cpath d='M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z' fill='%23FADCD9'/%3E%3C/svg%3E") no-repeat center/cover;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-section h3 {
            font-family: 'Playfair Display', serif;
            color: #4A4A4A;
            margin-bottom: 1rem;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 0.5rem;
        }

        .footer-section ul li a {
            color: #666;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-section ul li a:hover {
            color: #CDE3D1;
        }

        .newsletter-form {
            display: flex;
            gap: 0.5rem;
            margin-top: 1rem;
        }

        .newsletter-form input {
            flex: 1;
            padding: 0.75rem;
            border: 2px solid #F6EBD9;
            border-radius: 10px;
        }

        .newsletter-form button {
            background: linear-gradient(135deg, #CDE3D1, #A8D5BA);
            color: #4A4A4A;
            border: none;
            padding: 0.75rem 1.5rem;
            border-radius: 10px;
            cursor: pointer;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .newsletter-form button:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(205, 227, 209, 0.4);
        }

        .social-icons {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-icons a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #CDE3D1, #FADCD9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 1.2rem;
            transition: transform 0.3s ease;
        }

        .social-icons a:hover {
            transform: translateY(-3px) rotate(10deg);
        }

        .footer-bottom {
            text-align: center;
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid #F6EBD9;
            color: #666;
        }

        /* New Sections Styles */
        .features-section {
            padding: 5rem 2rem;
            background: lightblue;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .feature-card {
            background: white;
            padding: 2rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(205, 227, 209, 0.1), transparent);
            transform: rotate(45deg);
            transition: all 0.6s ease;
            opacity: 0;
        }

        .feature-card:hover::before {
            opacity: 1;
            transform: rotate(45deg) translate(50%, 50%);
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .feature-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            display: block;
        }

.artist-showcase {
    padding: 5rem 2rem;
    background: lightblue;
}

.artist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.artist-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.artist-card:hover {
    transform: translateY(-15px) rotate(1deg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.artist-image {
    width: 100%;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    position: relative;
    overflow: hidden;

    /* Add background image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Shine effect */
.artist-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.8s ease;
}

.artist-card:hover .artist-image::after {
    left: 100%;
}

.artist-info {
    padding: 2rem;
}

.artist-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #4A4A4A;
    margin-bottom: 0.5rem;
}

.artist-specialty {
    color: #CDE3D1;
    font-weight: 500;
    margin-bottom: 1rem;
}

.artist-bio {
    color: #666;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Different images for each artist */
.artist-card:nth-child(1) .artist-image {
    background-image: url('https://sa1s3optim.patientpop.com/assets/images/provider/photos/2717085.jpeg');
}
.artist-card:nth-child(2) .artist-image {
    background-image: url('https://t3.ftcdn.net/jpg/02/58/89/90/360_F_258899001_68CalsKTRk6PZQgWH9JhR4heBlncCko9.jpg');
}
.artist-card:nth-child(3) .artist-image {
    background-image: url('https://www.nm.org/-/media/northwestern/healthbeat/images/healthy-tips/nm-9-health-issues-women_preview.jpg');
}


        .pricing-section {
            padding: 5rem 2rem;
            background: lightblue;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            max-width: 1000px;
            margin: 0 auto;
        }

        .pricing-card {
            background: white;
            border-radius: 25px;
            padding: 2.5rem 2rem;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .pricing-card.featured {
            transform: scale(1.05);
            background: linear-gradient(135deg, #CDE3D1, #FADCD9);
            color: white;
        }

        .pricing-card.featured .pricing-title,
        .pricing-card.featured .pricing-price {
            color: white;
        }

        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .pricing-card.featured:hover {
            transform: scale(1.05) translateY(-10px);
        }

        .pricing-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            color: #4A4A4A;
            margin-bottom: 1rem;
        }

        .pricing-price {
            font-size: 2.5rem;
            font-weight: 700;
            color: #CDE3D1;
            margin-bottom: 1rem;
        }

        .pricing-features {
            list-style: none;
            margin-bottom: 2rem;
        }

        .pricing-features li {
            padding: 0.5rem 0;
            color: #666;
            position: relative;
        }

        .pricing-features li::before {
            content: '✓';
            color: #CDE3D1;
            font-weight: bold;
            margin-right: 0.5rem;
        }

        .process-section {
            padding: 5rem 2rem;
            background: lightblue;
        }

        .process-timeline {
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
        }

        .process-timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 3px;
            background: linear-gradient(to bottom, #CDE3D1, #FADCD9);
            transform: translateX(-50%);
        }

        .process-step {
            display: flex;
            align-items: center;
            margin-bottom: 4rem;
            position: relative;
        }

        .process-step:nth-child(even) {
            flex-direction: row-reverse;
        }

        .process-content {
            flex: 1;
            background: white;
            padding: 2rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            margin: 0 2rem;
            transition: all 0.3s ease;
        }

        .process-content:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }

        .process-number {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #CDE3D1, #FADCD9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: white;
            font-size: 1.2rem;
            z-index: 2;
        }

        .faq-section {
            padding: 5rem 2rem;
            background: lightblue;
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: white;
            border-radius: 15px;
            margin-bottom: 1rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }

        .faq-question {
            padding: 1.5rem 2rem;
            background: none;
            border: none;
            width: 100%;
            text-align: left;
            font-size: 1.1rem;
            font-weight: 500;
            color: #4A4A4A;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            background: #FFF8F0;
        }

        .faq-answer {
            padding: 0 2rem 1.5rem;
            color: #666;
            line-height: 1.6;
            display: none;
        }

        .faq-answer.active {
            display: block;
            animation: fadeInDown 0.3s ease;
        }

        @keyframes fadeInDown {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .blog-section {
    padding: 5rem 2rem;
    background: lightblue;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.blog-image {
    width: 100%;
    height: 200px;
    position: relative;
    overflow: hidden;

    /* Add real background image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Shine effect */
.blog-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.blog-card:hover .blog-image::before {
    left: 100%;
}

.blog-content {
    padding: 2rem;
}

.blog-date {
    color: #CDE3D1;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.blog-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #4A4A4A;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.read-more {
    color: #CDE3D1;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #4A4A4A;
}

/* Different images for each blog card */
.blog-card:nth-child(1) .blog-image {
    background-image: url('https://cdn.pixabay.com/photo/2020/12/01/10/04/dog-5793625_1280.jpg');
}
.blog-card:nth-child(2) .blog-image {
    background-image: url('https://cdn.pixabay.com/photo/2014/05/07/06/44/cat-339400_1280.jpg');
}
.blog-card:nth-child(3) .blog-image {
    background-image: url('https://cdn.pixabay.com/photo/2020/06/30/22/34/dog-5357794_1280.jpg');
}
.blog-card:nth-child(4) .blog-image {
    background-image: url('https://cdn.pixabay.com/photo/2023/12/04/17/24/evening-8429871_1280.jpg');
}


        /* Responsive Design */
        @media (max-width: 768px) {
            .hero {
                grid-template-columns: 1fr;
                grid-template-rows: auto 1fr auto;
                height: auto;
                min-height: 100vh;
            }

            .marquee {
                height: 200px;
            }

            .hero-title {
                font-size: 2.5rem;
            }

            .nav-links {
                gap: 1rem;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .steps {
                grid-template-columns: 1fr;
            }

            .features-grid,
            .artist-grid,
            .pricing-grid,
            .blog-grid {
                grid-template-columns: 1fr;
            }

            .process-timeline::before {
                left: 30px;
            }

            .process-step {
                flex-direction: column !important;
                align-items: flex-start;
                padding-left: 60px;
            }

            .process-number {
                left: 30px;
            }

            .process-content {
                margin: 0;
                margin-top: 1rem;
            }

            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .newsletter-form {
                flex-direction: column;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 2rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .pricing-card.featured {
                transform: none;
            }

            .pricing-card.featured:hover {
                transform: translateY(-10px);
            }
        }
    