/* Universal */
    /* Header/Banner Section */
    .banner {
      background: linear-gradient(to bottom, #ffffff 0%, #f9f9ff 100%);
      box-shadow: 0 4px 15px rgba(140, 82, 255, 0.1);
    }

    .banner-nav {
      background-color: #8c52ff;
      padding: 15px 0;
      box-shadow: 0 2px 10px rgba(140, 82, 255, 0.3);
      position: relative;
    }

    .banner-buttons {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .banner-buttons a {
      background-color: white;
      color: #8557f3;
      border: 2px solid white;
      padding: 12px 25px;
      font-size: 1.1rem;
      border-radius: 10px;
      cursor: pointer;
      font-weight: 600;
      transition: all 0.3s ease;
      text-decoration: none;
      display: inline-block;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
      min-width: 120px;
      text-align: center;
    }

    .banner-buttons a:hover {
      background-color: transparent;
      color: white;
      border-color: white;
      transform: translateY(-2px);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    /* Hamburger Menu Styles */
    .hamburger {
      display: none;
      flex-direction: column;
      cursor: pointer;
      padding: 10px;
      z-index: 1001;
      position: absolute;
      top: 50%;
      right: 20px;
      transform: translateY(-50%);
    }

    .hamburger span {
      width: 25px;
      height: 3px;
      background-color: white;
      margin: 3px 0;
      transition: 0.3s;
      border-radius: 2px;
    }

    .hamburger.active span:nth-child(1) {
      transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
      transform: rotate(45deg) translate(-5px, -6px);
    }

    /* Mobile Navigation */
    .mobile-nav {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background: linear-gradient(135deg, rgba(255, 182, 193, 0.95), rgba(217, 142, 255, 0.95));
      backdrop-filter: blur(10px);
      z-index: 1000;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 30px;
    }

    .mobile-nav.show {
      display: flex;
      animation: fadeIn 0.3s ease;
    }

    .mobile-nav a {
      color: white;
      text-decoration: none;
      font-size: 2rem;
      font-weight: 600;
      padding: 15px 30px;
      border-radius: 15px;
      background: rgba(255, 255, 255, 0.1);
      transition: all 0.3s ease;
      text-align: center;
      min-width: 200px;
      border: 2px solid rgba(255, 255, 255, 0.3);
    }

    .mobile-nav a:hover, .mobile-nav a:active {
      background: rgba(255, 255, 255, 0.2);
      transform: translateY(-2px);
      border-color: rgba(255, 255, 255, 0.5);
    }

    /* Banner Content */
    .banner-content {
      text-align: center;
      padding: 60px 20px;
    }

    .logo {
      height: 140px;
      max-width: 400px;
      object-fit: contain;
      filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
      margin-bottom: 20px;
    }

    .slogan {
      font-size: 4.2rem;
      font-family: cursive;
      color: #8c52ff;
      text-shadow: 0 2px 4px rgba(140, 82, 255, 0.2);
      font-weight: 300;
      letter-spacing: 2px;
      margin: 0;
    }

    /* Footer Styles */
    .footer {
      background: linear-gradient(135deg, #6a4c93 0%, #8c52ff 100%);
      color: white;
      position: relative;
      overflow: hidden;
    }

    .footer::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="sprinkles" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="3" cy="3" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="15" cy="8" r="1" fill="rgba(255,182,193,0.2)"/><circle cx="8" cy="15" r="1" fill="rgba(217,142,255,0.15)"/></pattern></defs><rect width="100" height="100" fill="url(%23sprinkles)"/></svg>') repeat;
      opacity: 0.3;
      z-index: 1;
    }

    .footer-content {
      position: relative;
      z-index: 2;
      max-width: 1200px;
      margin: 0 auto;
      padding: 60px 40px 40px;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 50px;
      align-items: start;
    }

    .footer-brand {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .footer-logo {
      height: 80px;
      width: auto;
      filter: brightness(1.2) drop-shadow(0 2px 8px rgba(0,0,0,0.2));
      transition: transform 0.3s ease;
    }

    .footer-logo:hover {
      transform: scale(1.05);
    }

    .footer-tagline {
      font-size: 1.2rem;
      font-style: italic;
      color: rgba(255, 255, 255, 0.9);
      line-height: 1.4;
      margin-bottom: 10px;
    }

    .footer-description {
      font-size: 0.95rem;
      color: rgba(255, 255, 255, 0.8);
      line-height: 1.6;
      margin-bottom: 25px;
    }

    .footer-social h4 {
      font-size: 1.1rem;
      font-weight: 600;
      margin-bottom: 15px;
      color: white;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .footer-social h4::before {
      content: '✨';
      font-size: 1.2rem;
    }

    .social-links {
      display: flex;
      gap: 12px;
      margin-bottom: 20px;
    }

    .social-link {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 50px;
      height: 50px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      text-decoration: none;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      border: 2px solid rgba(255, 255, 255, 0.2);
      position: relative;
      overflow: hidden;
    }

    .social-link::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 0;
      height: 0;
      background: rgba(255, 255, 255, 0.2);
      border-radius: 50%;
      transition: all 0.4s ease;
      transform: translate(-50%, -50%);
    }

    .social-link:hover::before {
      width: 100%;
      height: 100%;
    }

    .social-link:hover {
      transform: translateY(-3px) scale(1.1);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
      border-color: rgba(255, 255, 255, 0.4);
    }

    .social-icon {
      width: 24px;
      height: 24px;
      position: relative;
      z-index: 2;
      background: white;
    }

    .facebook-icon {
      mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M24 12.073c0-6.627-5.373-12-12-12s-12 5.373-12 12c0 5.99 4.388 10.954 10.125 11.854v-8.385H7.078v-3.47h3.047V9.43c0-3.007 1.792-4.669 4.533-4.669 1.312 0 2.686.235 2.686.235v2.953H15.83c-1.491 0-1.956.925-1.956 1.874v2.25h3.328l-.532 3.47h-2.796v8.385C19.612 23.027 24 18.062 24 12.073z'/%3E%3C/svg%3E") no-repeat center;
      mask-size: contain;
    }

    .instagram-icon {
      mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 2.163c3.204 0 3.584.012 4.85.07 3.252.148 4.771 1.691 4.919 4.919.058 1.265.069 1.645.069 4.849 0 3.205-.012 3.584-.069 4.849-.149 3.225-1.664 4.771-4.919 4.919-1.266.058-1.644.07-4.85.07-3.204 0-3.584-.012-4.849-.07-3.26-.149-4.771-1.699-4.919-4.92-.058-1.265-.07-1.644-.07-4.849 0-3.204.013-3.583.07-4.849.149-3.227 1.664-4.771 4.919-4.919 1.266-.057 1.645-.069 4.849-.069zm0-2.163c-3.259 0-3.667.014-4.947.072-4.358.2-6.78 2.618-6.98 6.98-.059 1.281-.073 1.689-.073 4.948 0 3.259.014 3.668.072 4.948.2 4.358 2.618 6.78 6.98 6.98 1.281.058 1.689.072 4.948.072 3.259 0 3.668-.014 4.948-.072 4.354-.2 6.782-2.618 6.979-6.98.059-1.28.073-1.689.073-4.948 0-3.259-.014-3.667-.072-4.947-.196-4.354-2.617-6.78-6.979-6.98-1.281-.059-1.69-.073-4.949-.073zm0 5.838c-3.403 0-6.162 2.759-6.162 6.162s2.759 6.163 6.162 6.163 6.162-2.759 6.162-6.163c0-3.403-2.759-6.162-6.162-6.162zm0 10.162c-2.209 0-4-1.79-4-4 0-2.209 1.791-4 4-4s4 1.791 4 4c0 2.21-1.791 4-4 4zm6.406-11.845c-.796 0-1.441.645-1.441 1.44s.645 1.44 1.441 1.44c.795 0 1.439-.645 1.439-1.44s-.644-1.44-1.439-1.44z'/%3E%3C/svg%3E") no-repeat center;
      mask-size: contain;
    }

    .footer-links h4,
    .footer-contact h4,
    .footer-hours h4 {
      font-size: 1.1rem;
      font-weight: 600;
      margin-bottom: 20px;
      color: white;
      position: relative;
      padding-bottom: 8px;
    }

    .footer-links h4::after,
    .footer-contact h4::after,
    .footer-hours h4::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 30px;
      height: 2px;
      background: linear-gradient(90deg, #ffb6c1, #d98eff);
      border-radius: 2px;
    }

    .footer-nav {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .footer-nav a {
      color: rgba(255, 255, 255, 0.85);
      text-decoration: none;
      padding: 8px 0;
      transition: all 0.3s ease;
      position: relative;
      padding-left: 20px;
    }

    .footer-nav a::before {
      content: '→';
      position: absolute;
      left: 0;
      opacity: 0;
      transform: translateX(-10px);
      transition: all 0.3s ease;
    }

    .footer-nav a:hover {
      color: white;
      padding-left: 25px;
    }

    .footer-nav a:hover::before {
      opacity: 1;
      transform: translateX(0);
    }

    .contact-details {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .contact-item {
      display: flex;
      flex-direction: column;
      gap: 5px;
    }

    .contact-item strong {
      font-weight: 600;
      color: white;
      font-size: 0.95rem;
    }

    .contact-item p {
      color: rgba(255, 255, 255, 0.85);
      line-height: 1.5;
      font-size: 0.9rem;
    }

    .contact-item a {
      color: rgba(255, 255, 255, 0.85);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .contact-item a:hover {
      color: #ffb6c1;
    }

    .hours-grid {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .day-hours {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 6px 12px;
      border-radius: 6px;
      background: rgba(255, 255, 255, 0.05);
      transition: background-color 0.3s ease;
    }

    .day-hours:hover {
      background: rgba(255, 255, 255, 0.1);
    }

    .day-hours.closed {
      opacity: 0.6;
    }

    .day-hours .day {
      font-weight: 500;
      color: rgba(255, 255, 255, 0.9);
      font-size: 0.9rem;
    }

    .day-hours .hours {
      color: rgba(255, 255, 255, 0.8);
      font-size: 0.85rem;
      font-weight: 400;
    }

    .footer-bottom {
      background: rgba(0, 0, 0, 0.3);
      text-align: center;
      padding: 25px 20px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      position: relative;
      z-index: 2;
    }

    .footer-bottom p {
      color: rgba(255, 255, 255, 0.7);
      font-size: 0.9rem;
      margin: 0;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background-color: #ffffff;
      line-height: 1.6;
      color: #333;
    }

    .menu-overlay {
      display: none;
      position: fixed;
      z-index: 2000;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.8);
      backdrop-filter: blur(5px);
    }

    .menu-overlay.show {
      display: flex;
      justify-content: center;
      align-items: center;
      animation: fadeIn 0.3s ease;
    }

    .menu-overlay img {
      max-width: 90%;
      max-height: 90%;
      object-fit: contain;
      border-radius: 15px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    .close-menu {
      position: absolute;
      top: 20px;
      right: 35px;
      color: white;
      font-size: 40px;
      font-weight: bold;
      cursor: pointer;
      z-index: 2001;
    }

    .close-menu:hover {
      color: #8c52ff;
    }

    .fullscreen-modal {
      display: none;
      position: fixed;
      z-index: 1000;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.9);
      backdrop-filter: blur(10px);
    }

    .fullscreen-modal.show {
      display: flex;
      justify-content: center;
      align-items: center;
      animation: fadeIn 0.3s ease;
    }

    .fullscreen-modal img {
      max-width: 90%;
      max-height: 90%;
      object-fit: contain;
      border-radius: 15px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    .close-modal {
      position: absolute;
      top: 20px;
      right: 35px;
      color: white;
      font-size: 40px;
      font-weight: bold;
      cursor: pointer;
      z-index: 1001;
    }

    .close-modal:hover {
      color: #ffb6c1;
    }

        /* Parties */
        @media (max-width: 1200px) {
            .party-container {
                grid-template-columns: 1fr 350px;
                gap: 30px;
            }

            .features-section {
                grid-template-columns: repeat(3, 1fr);
                gap: 25px;
            }

            .feature-card {
                padding: 30px 20px;
            }

            .feature-icon {
                font-size: 2.8rem;
            }

            .feature-title {
                font-size: 1.3rem;
            }

            .feature-description {
                font-size: 1rem;
            }
        }

        @media (max-width: 900px) {
            .features-section {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .banner-buttons {
                gap: 10px;
                padding: 0 15px;
            }

            .banner-buttons a {
                padding: 10px 18px;
                font-size: 1rem;
                min-width: 100px;
            }

            .main-content {
                padding: 15px 15px 40px;
            }

            .phero-section {
                padding: 25px 25px 20px;
                margin-bottom: 40px;
            }

            .phero-title {
                font-size: 2.5rem;
            }

            .phero-subtitle {
                font-size: 1.15rem;
            }

            .party-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .party-info {
                padding: 35px 25px;
            }

            .pricing-header {
                font-size: 2rem;
            }

            .party-picture {
                height: 250px;
            }

            .features-section {
                grid-template-columns: 1fr;
                margin-top: 40px;
            }

            .feature-card {
                padding: 30px 20px;
            }

            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 30px;
            }
        }

        @media (max-width: 480px) {
            .banner-buttons a {
                padding: 8px 15px;
                font-size: 0.9rem;
                min-width: 90px;
            }

            .phero-section {
                padding: 20px 20px 15px;
            }

            .phero-title {
                font-size: 2rem;
            }

            .party-info {
                padding: 25px 20px;
            }

            .pricing-header {
                font-size: 1.8rem;
            }

            .party-picture {
                height: 200px;
            }

            .pcontact-phone {
                font-size: 1.2rem;
            }
        }

        .pcontact-info {
            color: #bdc3c7;
            font-size: 14px;
        }
        
        .pcontact-info .address {
            margin-bottom: 15px;
        }
        
        .pcontact-info .phone {
            font-weight: bold;
            color: #f3f4f6;
        }

        .pcontact-section {
            background: linear-gradient(135deg, #8c52ff, #a66cff);
            color: white;
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 8px 25px rgba(140, 82, 255, 0.3);
        }

        .pcontact-text {
            font-size: 1.1rem;
            margin-bottom: 25px;
            line-height: 1.6;
        }

        .pcontact-phone {
            font-size: 1.4rem;
            font-weight: bold;
            margin-bottom: 20px;
            color: #ffffff;
        }

        .phero-section {
            text-align: center;
            background: linear-gradient(135deg, #f8f9ff, #ffffff);
            padding: 40px 40px 35px;
            border-radius: 25px;
            box-shadow: 0 15px 40px rgba(140, 82, 255, 0.1);
            margin-bottom: 60px;
            border: 1px solid #e8e8ff;
        }

        .phero-title {
            font-size: 3.5rem;
            color: #8c52ff;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 0 2px 4px rgba(140, 82, 255, 0.1);
        }

        .phero-subtitle {
            font-size: 1.3rem;
            color: #666;
            max-width: 700px;
            margin: 0 auto 40px;
            line-height: 1.7;
        }

        .decorative-line {
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, #8c52ff, #b084ff);
            margin: 0 auto 30px;
            border-radius: 2px;
        }

        .party-container {
            display: grid;
            grid-template-columns: 1fr 400px;
            gap: 40px;
            margin-bottom: 60px;
            align-items: flex-start;
        }

        .party-info {
            background: white;
            padding: 50px;
            border-radius: 20px;
            box-shadow: 0 12px 30px rgba(140, 82, 255, 0.12);
            border: 1px solid #e8e8ff;
            position: relative;
        }

        .party-info::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, #8c52ff, #b084ff);
            border-radius: 20px 20px 0 0;
        }

        .pricing-header {
            color: #8c52ff;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 30px;
            text-align: center;
        }

        .price-highlight {
            background: linear-gradient(135deg, #8c52ff, #a66cff);
            color: white;
            padding: 20px;
            border-radius: 15px;
            text-align: center;
            margin-bottom: 25px;
            box-shadow: 0 8px 25px rgba(140, 82, 255, 0.3);
        }

        .price-amount {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 5px;
        }

        .price-period {
            font-size: 1.1rem;
            opacity: 0.9;
        }

        .rental-includes {
            background: white;
            padding: 25px;
            border-radius: 12px;
            margin-bottom: 25px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            border: 1px solid #e8e8ff;
        }

        .includes-title {
            color: #8c52ff;
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 15px;
            text-align: center;
        }

        .includes-list {
            color: #555;
            font-size: 1.1rem;
            line-height: 2;
            text-align: center;
        }

        .includes-item {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 8px;
        }

        .includes-item::before {
            content: "✨";
            margin-right: 10px;
            font-size: 1.2rem;
        }

        .pricing-details {
            background: linear-gradient(135deg, #f0f4ff, #faf9ff);
            padding: 30px;
            border-radius: 15px;
            margin-bottom: 30px;
            border-left: 5px solid #8c52ff;
        }

        .capacity-info {
            font-size: 1.2rem;
            color: #333;
            font-weight: 600;
            margin-bottom: 20px;
            text-align: center;
            background: white;
            padding: 20px;
            border-radius: 12px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
        }

        .party-description {
            font-size: 1.15rem;
            color: #555;
            line-height: 1.8;
            margin-bottom: 30px;
        }

        .party-form-link {
            display: inline-block;
            background: white;
            color: #8c52ff;
            padding: 15px 30px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        .party-form-link:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.2);
            background: #f8f9ff;
        }

        .party-image-container {
            position: relative;
        }

        .party-picture {
            width: 100%;
            height: 280px;
            object-fit: cover;
            border-radius: 20px;
            box-shadow: 0 15px 40px rgba(140, 82, 255, 0.2);
            transition: transform 0.3s ease;
            cursor: pointer;
        }

        .party-picture:hover {
            transform: scale(1.02);
        }

        .features-section {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 20px;
            margin-top: 60px;
        }

        .feature-card {
            background: white;
            padding: 25px 20px;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 8px 25px rgba(140, 82, 255, 0.08);
            border: 1px solid #e8e8ff;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 35px rgba(140, 82, 255, 0.15);
        }

        .feature-icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }

        .feature-title {
            color: #8c52ff;
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .feature-description {
            color: #666;
            font-size: 0.9rem;
            line-height: 1.5;
        }

        .decorating-options {
            background: linear-gradient(135deg, #f0f4ff, #faf9ff);
            padding: 30px;
            border-radius: 15px;
            margin-bottom: 25px;
            border-left: 5px solid #8c52ff;
        }

        .decorating-title {
            color: #8c52ff;
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 20px;
            text-align: center;
        }

        .options-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin-bottom: 15px;
        }

        .option-item {
            background: white;
            padding: 15px;
            border-radius: 10px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
            border: 1px solid #e8e8ff;
            text-align: center;
        }

        .option-name {
            color: #8c52ff;
            font-weight: 600;
            font-size: 1.1rem;
            margin-bottom: 5px;
        }

        .option-price {
            color: #555;
            font-size: 1rem;
            font-weight: 500;
        }

        .pricing-note {
            background: white;
            padding: 15px;
            border-radius: 10px;
            border: 1px solid #e8e8ff;
            text-align: center;
            font-size: 0.95rem;
            color: #666;
            font-style: italic;
        }

        @media (max-width: 1200px) {
            .party-container {
                grid-template-columns: 1fr 350px;
                gap: 30px;
            }

            .features-section {
                grid-template-columns: repeat(3, 1fr);
                gap: 25px;
            }

            .feature-card {
                padding: 30px 20px;
            }

            .feature-icon {
                font-size: 2.8rem;
            }

            .feature-title {
                font-size: 1.3rem;
            }

            .feature-description {
                font-size: 1rem;
            }
        }

        @media (max-width: 900px) {
            .features-section {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .banner-buttons {
                gap: 10px;
                padding: 0 15px;
            }

            .banner-buttons a {
                padding: 10px 18px;
                font-size: 1rem;
                min-width: 100px;
            }

            .main-content {
                padding: 15px 15px 40px;
            }

            .hero-section {
                padding: 25px 25px 20px;
                margin-bottom: 40px;
            }

            .hero-title {
                font-size: 2.5rem;
            }

            .hero-subtitle {
                font-size: 1.15rem;
            }

            .party-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .party-info {
                padding: 35px 25px;
            }

            .pricing-header {
                font-size: 2rem;
            }

            .party-picture {
                height: 250px;
            }

            .features-section {
                grid-template-columns: 1fr;
                margin-top: 40px;
            }

            .feature-card {
                padding: 30px 20px;
            }

            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 30px;
            }
        }

        @media (max-width: 480px) {
            .banner-buttons a {
                padding: 8px 15px;
                font-size: 0.9rem;
                min-width: 90px;
            }

            .hero-section {
                padding: 20px 20px 15px;
            }

            .hero-title {
                font-size: 2rem;
            }

            .party-info {
                padding: 25px 20px;
            }

            .pricing-header {
                font-size: 1.8rem;
            }

            .party-picture {
                height: 200px;
            }

            .contact-phone {
                font-size: 1.2rem;
            }
        }
