#service{
          font-family: 'Georgia', serif;
            background: linear-gradient(135deg, #fff8e1 0%, #fce4ec 30%, #f3e5f5 60%, #fff3e0 100%));
            min-height: 100vh;
            padding: 40px 20px;
            position: relative;
            overflow-x: hidden;
      }

      .containers {
             
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .image-section {
            position: relative;
            animation: fadeInLeft 1s ease-out;
        }

        .image-container {
            position: relative;
            border-radius: 25px;
            overflow: hidden;
            box-shadow:
                0 25px 50px rgba(139, 69, 19, 0.15),
                0 10px 25px rgba(139, 69, 19, 0.1);
            transform: rotate(-2deg);
            transition: transform 0.3s ease;
        }

        .image-container:hover {
            transform: rotate(0deg) scale(1.02);
        }

        .image-container::before {
            content: '';
            position: absolute;
            top: -3px;
            left: -3px;
            right: -3px;
            bottom: -3px;
            background: linear-gradient(45deg, #d4af37, #ffd700, #b8860b, #daa520);
            border-radius: 28px;
            z-index: -1;
            animation: borderGlow 3s ease-in-out infinite alternate;
        }

        @keyframes borderGlow {
            0% {
                opacity: 0.6;
            }

            100% {
                opacity: 1;
            }
        }

        .main-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
            display: block;
            filter: brightness(1.05) saturate(1.1);
        }

        .decorative-elements {
            position: absolute;
            top: -20px;
            right: -20px;
            width: 80px;
            height: 80px;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.2), transparent);
            border-radius: 50%;
            animation: float 4s ease-in-out infinite;
        }

        .decorative-elements::after {
            content: '✨';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 24px;
            animation: sparkle 2s ease-in-out infinite alternate;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0px) rotate(0deg);
            }

            50% {
                transform: translateY(-10px) rotate(5deg);
            }
        }

        @keyframes sparkle {
            0% {
                opacity: 0.5;
                transform: translate(-50%, -50%) scale(0.8);
            }

            100% {
                opacity: 1;
                transform: translate(-50%, -50%) scale(1.2);
            }
        }

        .content-section {
            animation: fadeInRight 1s ease-out;
        }

        .brand-label {
            color: #8b4513;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 15px;
            opacity: 0.8;
        }

        .main-heading {
            font-size: 3.2rem;
            color: #4a4a4a;
            font-weight: 300;
            line-height: 1.2;
            margin-bottom: 35px;
            background: linear-gradient(135deg, #4a4a4a, #6b6b6b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .description {
            color: #666;
            font-size: 16px;
            line-height: 1.7;
            margin-bottom: 25px;
            text-align: justify;
        }

        .second-paragraph {
            color: #666;
            font-size: 16px;
            line-height: 1.7;
            margin-bottom: 40px;
            text-align: justify;
        }

        .cta-button {
            display: inline-block;
            background: linear-gradient(135deg, #8b4513, #a0522d);
            color: white;
            padding: 15px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(139, 69, 19, 0.3);
            position: relative;
            overflow: hidden;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s ease;
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(139, 69, 19, 0.4);
            background: linear-gradient(135deg, #a0522d, #cd853f);
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .floating-hearts {
            position: absolute;
            top: 20%;
            right: 10%;
            font-size: 20px;
            color: rgba(212, 175, 55, 0.3);
            animation: heartFloat 6s ease-in-out infinite;
        }

        @keyframes heartFloat {

            0%,
            100% {
                transform: translateY(0px) rotate(0deg);
                opacity: 0.3;
            }

            25% {
                transform: translateY(-15px) rotate(5deg);
                opacity: 0.6;
            }

            50% {
                transform: translateY(-10px) rotate(-3deg);
                opacity: 0.4;
            }

            75% {
                transform: translateY(-20px) rotate(7deg);
                opacity: 0.7;
            }
        }

        @media (max-width: 768px) {
            .containers {
                grid-template-columns: 1fr;
                gap: 40px;
                padding: 20px;
            }

            .main-heading {
                font-size: 2.4rem;
            }

            .image-container {
                transform: rotate(-1deg);
            }
        }
        
.faq-item {
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
  }

  .faq-question {
    font-weight: bold;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: #f0f0f0;
    border-radius: 5px;
    transition: background 0.3s ease;
  }

  .faq-question:hover {
    background-color: #e6f2ff;
  }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.3s ease;
    background: #fff;
    padding: 0 15px;
  }

  .faq-item.active .faq-answer {
    max-height: 500px;
    padding: 15px;
  }

  .icon {
    font-size: 24px;
    transition: transform 0.3s ease;
  }

  .faq-item.active .icon {
    transform: rotate(45deg);
  }