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

   body {
       font-family: 'Arial', sans-serif;
       line-height: 1.6;
       overflow-x: hidden;
   }

   /* Navbar Styles */
   .navbar {
       position: fixed;
       top: 0;
       width: 100%;
       background: linear-gradient(135deg, #ff6b6b, #ff8e53);
       backdrop-filter: blur(10px);
       z-index: 1000;
       padding: 1rem 0;
       transition: all 0.3s ease;
       box-shadow: 0 2px 20px rgba(255, 107, 107, 0.3);
   }

   .nav-container {
       max-width: 1200px;
       margin: 0 auto;
       padding: 0 2rem;
       display: flex;
       justify-content: space-between;
       align-items: center;
   }

   .logo {
       font-size: 2rem;
       font-weight: bold;
       color: white;
       text-decoration: none;
       display: flex;
       align-items: center;
       gap: 0.5rem;
   }

   .logo i {
       font-size: 2.5rem;
       color: #ffd93d;
   }

   .nav-links {
       display: flex;
       list-style: none;
       gap: 2rem;
   }

   .nav-links a {
       color: white;
       text-decoration: none;
       font-weight: 500;
       position: relative;
       padding: 0.5rem 1rem;
       border-radius: 25px;
       transition: all 0.3s ease;
   }

   .nav-links a:hover {
       background: rgba(255, 255, 255, 0.2);
       transform: translateY(-2px);
   }

   .nav-links a.active {
       background: rgba(255, 255, 255, 0.3);
   }

   .hamburger {
       display: none;
       flex-direction: column;
       cursor: pointer;
       padding: 0.5rem;
   }

   .hamburger span {
       width: 25px;
       height: 3px;
       background: white;
       margin: 3px 0;
       transition: 0.3s;
   }

   .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);
   }

   /* Page Container */
   .page {
       display: none;
       min-height: 100vh;
       padding-top: 100px;
   }

   .page.active {
       display: block;
   }

   /* Hero Section */
   .hero {
       background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
       min-height: 90vh;
       display: flex;
       align-items: center;
       position: relative;
       overflow: hidden;
   }

   .hero::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 1000 100" preserveAspectRatio="none"><polygon fill="rgba(255,255,255,0.1)" points="1000,100 1000,0 0,0 0,100"/></svg>');
       animation: float 6s ease-in-out infinite;
   }

   @keyframes float {

       0%,
       100% {
           transform: translateY(0px);
       }

       50% {
           transform: translateY(-20px);
       }
   }

   .hero-content {
       max-width: 1200px;
       margin: 0 auto;
       padding: 0 2rem;
       text-align: center;
       color: white;
       position: relative;
       z-index: 2;
   }

   .hero h1 {
       font-size: 4rem;
       margin-bottom: 1rem;
       opacity: 0;
       animation: slideUp 1s ease 0.5s forwards;
   }

   .hero p {
       font-size: 1.5rem;
       margin-bottom: 2rem;
       opacity: 0;
       animation: slideUp 1s ease 0.7s forwards;
   }

   .cta-button {
       background: linear-gradient(135deg, #ff6b6b, #ff8e53);
       color: white;
       padding: 1rem 2rem;
       border: none;
       border-radius: 50px;
       font-size: 1.2rem;
       font-weight: bold;
       cursor: pointer;
       text-decoration: none;
       display: inline-block;
       transition: all 0.3s ease;
       opacity: 0;
       animation: slideUp 1s ease 0.9s forwards;
       box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
   }

   .cta-button:hover {
       transform: translateY(-3px);
       box-shadow: 0 15px 40px rgba(255, 107, 107, 0.6);
   }

   @keyframes slideUp {
       from {
           opacity: 0;
           transform: translateY(30px);
       }

       to {
           opacity: 1;
           transform: translateY(0);
       }
   }

   /* About Section */
   .about-container {
       max-width: 1200px;
       margin: 0 auto;
       padding: 4rem 2rem;
   }

   .about-grid {
       display: grid;
       grid-template-columns: 1fr 1fr;
       gap: 4rem;
       align-items: center;
   }

   .about-text h2 {
       font-size: 3rem;
       color: #333;
       margin-bottom: 1rem;
       background: linear-gradient(135deg, #ff6b6b, #ff8e53);
       -webkit-background-clip: text;
       -webkit-text-fill-color: transparent;
       background-clip: text;
   }

   .about-text p {
       font-size: 1.2rem;
       color: #666;
       margin-bottom: 1.5rem;
   }

   .about-image {
       position: relative;
       border-radius: 20px;
       overflow: hidden;
       box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
   }

   .about-image img {
       width: 100%;
       height: 400px;
       object-fit: cover;
       transition: transform 0.3s ease;
   }

   .about-image:hover img {
       transform: scale(1.05);
   }

   /* Menu Section */
   .menu-container {
       background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
       min-height: 100vh;
       padding: 4rem 2rem;
   }

   .menu-content {
       max-width: 1200px;
       margin: 0 auto;
   }

   .menu-content h2 {
       text-align: center;
       font-size: 3rem;
       color: white;
       margin-bottom: 3rem;
   }

   .menu-grid {
       display: grid;
       grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
       gap: 2rem;
   }

   .menu-item {
       background: white;
       border-radius: 20px;
       padding: 2rem;
       text-align: center;
       transition: all 0.3s ease;
       box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
   }

   .menu-item:hover {
       transform: translateY(-10px);
       box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
   }

   .menu-item i {
       font-size: 3rem;
       color: #ff6b6b;
       margin-bottom: 1rem;
   }

   .menu-item h3 {
       font-size: 1.5rem;
       margin-bottom: 1rem;
       color: #333;
   }

   .menu-item p {
       color: #666;
       margin-bottom: 1rem;
   }

   .price {
       font-size: 1.5rem;
       font-weight: bold;
       color: #ff6b6b;
   }

   /* Services Section */
   .services-container {
       background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
       min-height: 100vh;
       padding: 4rem 2rem;
   }

   .services-content {
       max-width: 1200px;
       margin: 0 auto;
   }

   .services-content h2 {
       text-align: center;
       font-size: 3rem;
       color: white;
       margin-bottom: 3rem;
   }

   .services-grid {
       display: grid;
       grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
       gap: 2rem;
   }

   .service-card {
       background: rgba(255, 255, 255, 0.2);
       backdrop-filter: blur(10px);
       border-radius: 20px;
       padding: 2rem;
       text-align: center;
       color: white;
       transition: all 0.3s ease;
       border: 1px solid rgba(255, 255, 255, 0.3);
   }

   .service-card:hover {
       transform: translateY(-10px);
       background: rgba(255, 255, 255, 0.3);
   }

   .service-card i {
       font-size: 3rem;
       margin-bottom: 1rem;
       color: #ffd93d;
   }

   .service-card h3 {
       font-size: 1.5rem;
       margin-bottom: 1rem;
   }

   /* Contact Section */
   .contact-container {
       background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
       min-height: 100vh;
       padding: 4rem 2rem;
   }

   .contact-content {
       max-width: 1200px;
       margin: 0 auto;
   }

   .contact-content h2 {
       text-align: center;
       font-size: 3rem;
       color: #333;
       margin-bottom: 3rem;
   }

   .contact-grid {
       display: grid;
       grid-template-columns: 1fr 1fr;
       gap: 4rem;
   }

   .contact-info {
       display: flex;
       flex-direction: column;
       gap: 2rem;
   }

   .contact-item {
       display: flex;
       align-items: center;
       gap: 1rem;
       padding: 1.5rem;
       background: white;
       border-radius: 15px;
       box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
       transition: all 0.3s ease;
   }

   .contact-item:hover {
       transform: translateY(-5px);
       box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
   }

   .contact-item i {
       font-size: 2rem;
       color: #ff6b6b;
   }

   .contact-form {
       background: white;
       padding: 2rem;
       border-radius: 20px;
       box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
   }

   .form-group {
       margin-bottom: 1.5rem;
   }

   .form-group label {
       display: block;
       margin-bottom: 0.5rem;
       color: #333;
       font-weight: 500;
   }

   .form-group input,
   .form-group textarea {
       width: 100%;
       padding: 1rem;
       border: 2px solid #e0e0e0;
       border-radius: 10px;
       font-size: 1rem;
       transition: all 0.3s ease;
   }

   .form-group input:focus,
   .form-group textarea:focus {
       outline: none;
       border-color: #ff6b6b;
       box-shadow: 0 0 10px rgba(255, 107, 107, 0.3);
   }

   .submit-btn {
       background: linear-gradient(135deg, #ff6b6b, #ff8e53);
       color: white;
       padding: 1rem 2rem;
       border: none;
       border-radius: 50px;
       font-size: 1.1rem;
       font-weight: bold;
       cursor: pointer;
       width: 100%;
       transition: all 0.3s ease;
   }

   .submit-btn:hover {
       transform: translateY(-2px);
       box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
   }

   /* Footer */
   .footer {
       background: #333;
       color: white;
       text-align: center;
       padding: 2rem;
       margin-top: auto;
   }

   /* Mobile Responsive */
   @media (max-width: 768px) {
       .hamburger {
           display: flex;
       }

       .nav-links {
           position: fixed;
           top: 0;
           left: -100%;
           width: 100%;
           height: 100vh;
           background: linear-gradient(135deg, #ff6b6b, #ff8e53);
           flex-direction: column;
           justify-content: center;
           align-items: center;
           transition: 0.3s;
       }

       .nav-links.active {
           left: 0;
       }

       .nav-links a {
           font-size: 1.5rem;
           margin: 1rem 0;
       }

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

       .hero p {
           font-size: 1.2rem;
       }

       .about-grid,
       .contact-grid {
           grid-template-columns: 1fr;
           gap: 2rem;
       }

       .about-text h2,
       .menu-content h2,
       .services-content h2,
       .contact-content h2 {
           font-size: 2rem;
       }
   }

   /* Animations */
   .fade-in {
       opacity: 0;
       transform: translateY(30px);
       animation: fadeInUp 0.6s ease forwards;
   }

   @keyframes fadeInUp {
       to {
           opacity: 1;
           transform: translateY(0);
       }
   }

   .bounce {
       animation: bounce 2s infinite;
   }

   @keyframes bounce {

       0%,
       20%,
       50%,
       80%,
       100% {
           transform: translateY(0);
       }

       40% {
           transform: translateY(-10px);
       }

       60% {
           transform: translateY(-5px);
       }
   }