 body {
     margin: 0;
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
     background-color: #f9f1eb;
     color: #5b3a1a;
 }

 a {
     text-decoration: none;
     color: inherit;
 }

 /* Навігація */
 nav.navbar {
     background-color: #f5e0d3;
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
     position: sticky;
     top: 0;
     z-index: 100;
 }

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

 .logo {
     font-weight: 700;
     font-size: 1.5rem;
     color: #b35a35;
 }

 .nav-links {
     list-style: none;
     display: flex;
     gap: 25px;
 }

 .nav-links li a {
     font-weight: 600;
     font-size: 1rem;
     color: #7a4a27;
     transition: color 0.3s ease;
 }

 .nav-links li a:hover,
 .nav-links li a:focus {
     color: #d87c45;
 }

 /* Мобільне меню */
 .menu-toggle {
     display: none;
     flex-direction: column;
     justify-content: space-around;
     width: 28px;
     height: 22px;
     background: transparent;
     border: none;
     cursor: pointer;
 }

 .menu-toggle .bar {
     width: 100%;
     height: 3px;
     background-color: #7a4a27;
     border-radius: 2px;
 }

 @media (max-width: 768px) {
     .nav-links {
         position: absolute;
         top: 60px;
         right: 0;
         background-color: #f5e0d3;
         flex-direction: column;
         width: 200px;
         padding: 20px;
         box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
         transform: translateX(100%);
         transition: transform 0.3s ease-in-out;
     }

     .nav-links.active {
         transform: translateX(0);
     }

     .menu-toggle {
         display: flex;
     }
 }

 section.hero {
     background-image: url('../img/hero.png');
     background-size: cover;
     background-position: center;
     padding: 120px 20px;
     color: #fff;
     text-align: center;
     position: relative;
 }

 section.hero::before {
     content: "";
     position: absolute;
     inset: 0;
     background: rgba(179, 90, 53, 0.6);
     z-index: 0;
 }

 section.hero .hero-content {
     position: relative;
     max-width: 700px;
     margin: 0 auto;
     z-index: 1;
 }

 section.hero h1 {
     font-size: 3rem;
     margin-bottom: 20px;
     font-weight: 700;
     text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
 }

 section.hero p {
     font-size: 1.25rem;
     line-height: 1.6;
     text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.6);
 }

 @media (max-width: 768px) {
     section.hero {
         padding: 80px 15px;
     }

     section.hero h1 {
         font-size: 2.2rem;
     }

     section.hero p {
         font-size: 1rem;
     }
 }

 /* Блок "Για εμάς" */
 section.about-section {
     max-width: 1200px;
     margin: 60px auto;
     padding: 0 20px;
     display: flex;
     gap: 40px;
     align-items: center;
     flex-wrap: wrap;
     background-color: #f9f1eb;
 }

 .about-text {
     flex: 1 1 500px;
     min-width: 300px;
     background: rgba(245, 230, 220, 0.9);
     padding: 30px 40px;
     border-radius: 12px;
     box-shadow: 0 4px 12px rgba(179, 90, 53, 0.25);
     color: #5b3a1a;
 }

 .about-text h2 {
     font-size: 2.8rem;
     margin-bottom: 25px;
     font-weight: 700;
 }

 .about-text p {
     font-size: 1.15rem;
     line-height: 1.7;
     margin-bottom: 18px;
 }

 .about-text p:last-child {
     font-style: italic;
     color: #b96c2f;
     font-weight: 600;
     margin-top: 30px;
 }

 .about-image {
     flex: 1 1 450px;
     min-width: 300px;
     max-width: 450px;
     border-radius: 15px;
     box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
     overflow: hidden;
 }

 .about-image img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     display: block;
     border-radius: 15px;
 }

 @media (max-width: 900px) {
     section.about-section {
         flex-direction: column;
         text-align: center;
         margin: 40px auto;
     }

     .about-text {
         padding: 20px 15px;
         background: transparent;
         box-shadow: none;
         max-width: 100%;
     }

     .about-text h2 {
         font-size: 2.2rem;
     }

     .about-text p {
         font-size: 1rem;
         margin-bottom: 14px;
     }

     .about-text p:last-child {
         margin-top: 20px;
     }

     .about-image {
         max-width: 90vw;
         margin-top: 25px;
         box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
     }
 }

 /* Блок "Γιατί Εμάς" */
 section.why-us {
     background-color: #f9f1eb;
     padding: 60px 20px;
     color: #5b3a1a;
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
 }

 .why-container {
     max-width: 1200px;
     margin: 0 auto;
     display: flex;
     gap: 40px;
     align-items: center;
     flex-wrap: wrap;
 }

 .why-text {
     flex: 1 1 500px;
     min-width: 280px;
     background: rgba(245, 230, 220, 0.85);
     padding: 30px 25px;
     border-radius: 12px;
     box-shadow: 0 4px 12px rgba(179, 90, 53, 0.25);
     z-index: 2;
 }

 .why-text h2 {
     font-size: 2.4rem;
     margin-bottom: 20px;
     font-weight: 700;
 }

 .why-text p {
     font-size: 1.1rem;
     line-height: 1.6;
     margin-bottom: 15px;
 }

 .why-image {
     flex: 1 1 450px;
     min-width: 280px;
     max-width: 450px;
     box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
     border-radius: 12px;
     overflow: hidden;
     z-index: 1;
 }

 .why-image img {
     width: 100%;
     display: block;
     object-fit: cover;
     border-radius: 12px;
 }

 @media (max-width: 900px) {
     .why-container {
         flex-direction: column;
         text-align: center;
     }

     .why-text {
         background: transparent;
         box-shadow: none;
         padding: 0 10px 20px;
     }

     .why-image {
         max-width: 90vw;
         margin-top: 25px;
     }
 }

 .services-section {
     background-color: #f5e7de;
     padding: 60px 20px;
     color: #6a4421;
 }

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

 .services-section h2 {
     font-size: 2.8rem;
     font-weight: 700;
     margin-bottom: 10px;
     text-align: center;
     color: #b35a35;
 }

 .services-section .subtitle {
     font-size: 1.2rem;
     font-weight: 500;
     margin-bottom: 40px;
     text-align: center;
     color: #8c6239;
 }

 .services-list {
     list-style: none;
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     gap: 30px;
     padding: 0;
     margin: 0;
 }

 .services-list li {
     display: flex;
     gap: 20px;
     background-color: #fff8f1;
     padding: 25px 20px;
     border-radius: 12px;
     box-shadow: 0 4px 12px rgba(179, 90, 53, 0.15);
     align-items: flex-start;
     transition: box-shadow 0.3s ease;
 }

 .services-list li:hover {
     box-shadow: 0 6px 20px rgba(179, 90, 53, 0.35);
 }

 .services-list i {
     font-size: 2.4rem;
     color: #b35a35;
     flex-shrink: 0;
     margin-top: 4px;
 }

 .services-list h3 {
     margin: 0 0 8px 0;
     font-size: 1.3rem;
     font-weight: 700;
     color: #7a3e16;
 }

 .services-list p {
     margin: 0;
     font-size: 1rem;
     line-height: 1.5;
     color: #6a4421;
 }

 /* Адаптивність */
 @media (max-width: 600px) {
     .services-list li {
         flex-direction: column;
         align-items: center;
         text-align: center;
     }

     .services-list i {
         margin: 0 0 12px 0;
     }
 }

 .popular-dishes {
     background-color: #fff8f1;
     padding: 60px 20px;
     color: #6a4421;
 }

 .popular-dishes .container {
     max-width: 1200px;
     margin: 0 auto;
 }

 .popular-dishes h2 {
     font-size: 2.8rem;
     font-weight: 700;
     margin-bottom: 40px;
     text-align: center;
     color: #b35a35;
 }

 .dishes-list {
     list-style: none;
     padding: 0;
     margin: 0;
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     gap: 30px;
 }

 .dishes-list li {
     background-color: #fff;
     border-radius: 12px;
     box-shadow: 0 4px 12px rgba(179, 90, 53, 0.15);
     overflow: hidden;
     display: flex;
     flex-direction: column;
     transition: box-shadow 0.3s ease;
 }

 .dishes-list li:hover {
     box-shadow: 0 6px 20px rgba(179, 90, 53, 0.35);
 }

 .dishes-list img {
     width: 100%;
     height: 250px;
     object-fit: cover;
     display: block;
 }

 .dish-info {
     padding: 20px 15px;
     flex-grow: 1;
     display: flex;
     flex-direction: column;
 }

 .dish-info h3 {
     margin: 0 0 10px 0;
     font-size: 1.3rem;
     color: #7a3e16;
     font-weight: 700;
 }

 .dish-info p {
     flex-grow: 1;
     margin: 0 0 15px 0;
     font-size: 1rem;
     line-height: 1.5;
     color: #6a4421;
 }

 .price {
     font-weight: 700;
     color: #b35a35;
     font-size: 1.1rem;
     align-self: flex-start;
 }

 /* Адаптивність */
 @media (max-width: 600px) {
     .dishes-list {
         grid-template-columns: 1fr;
     }
 }

 .reviews-section {
     background-color: #f5e7de;
     padding: 60px 20px;
     color: #6a4421;
     text-align: center;
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
 }

 .reviews-section .container {
     max-width: 700px;
     margin: 0 auto;
 }

 .reviews-section h2 {
     font-size: 3rem;
     font-weight: 700;
     margin-bottom: 10px;
     color: #b35a35;
 }

 .reviews-section .subtitle {
     font-size: 1.3rem;
     margin-bottom: 50px;
     color: #8c6239;
     font-weight: 500;
 }

 .slider {
     position: relative;
     overflow: hidden;
 }

 .slides {
     display: flex;
     transition: transform 0.4s ease-in-out;
 }

 .slide {
     min-width: 100%;
     box-sizing: border-box;
     padding: 0 30px;
     display: none;
     flex-shrink: 0;
 }

 .slide.active {
     display: block;
 }

 .slide h3 {
     font-size: 1.8rem;
     margin-bottom: 15px;
     font-weight: 700;
     color: #7a3e16;
 }

 .slide p {
     font-size: 1.2rem;
     line-height: 1.6;
     color: #5b3a1a;
     max-width: 600px;
     margin: 0 auto;
 }

 /* Кнопки навігації */
 .controls {
     margin-top: 30px;
     display: flex;
     justify-content: center;
     gap: 50px;
 }

 .controls button {
     background: #b35a35;
     border: none;
     color: white;
     font-size: 2.8rem;
     padding: 10px 18px;
     border-radius: 50%;
     cursor: pointer;
     transition: background-color 0.3s ease;
     box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
     user-select: none;
 }

 .controls button:hover,
 .controls button:focus {
     background-color: #d87c45;
     outline: none;
 }

 /* Адаптивність */
 @media (max-width: 480px) {
     .reviews-section h2 {
         font-size: 2.4rem;
     }

     .reviews-section .subtitle {
         font-size: 1.1rem;
         margin-bottom: 35px;
     }

     .slide h3 {
         font-size: 1.4rem;
     }

     .slide p {
         font-size: 1rem;
         max-width: 90vw;
     }

     .controls {
         gap: 30px;
     }

     .controls button {
         font-size: 2rem;
         padding: 8px 14px;
     }
 }

 .contact-section {
     background-color: #fff8f1;
     padding: 60px 20px;
     color: #6a4421;
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
 }

 .contact-section .container {
     max-width: 900px;
     margin: 0 auto;
 }

 .contact-section h2 {
     font-size: 2.8rem;
     font-weight: 700;
     margin-bottom: 40px;
     text-align: center;
     color: #b35a35;
 }

 .contact-wrapper {
     display: flex;
     gap: 50px;
     flex-wrap: wrap;
     justify-content: center;
 }

 .contact-form {
     flex: 1 1 350px;
     display: flex;
     flex-direction: column;
     gap: 18px;
 }

 .contact-form label {
     font-weight: 600;
     margin-bottom: 6px;
     font-size: 1rem;
 }

 .contact-form input,
 .contact-form textarea {
     padding: 10px 12px;
     border: 2px solid #b35a35;
     border-radius: 8px;
     font-size: 1rem;
     font-family: inherit;
     resize: vertical;
     transition: border-color 0.3s ease;
 }

 .contact-form input:focus,
 .contact-form textarea:focus {
     border-color: #d87c45;
     outline: none;
 }

 .contact-form button {
     width: max-content;
     background-color: #b35a35;
     color: #fff;
     padding: 12px 30px;
     font-size: 1.1rem;
     font-weight: 700;
     border: none;
     border-radius: 10px;
     cursor: pointer;
     transition: background-color 0.3s ease;
     align-self: flex-start;
 }

 .contact-form button:hover,
 .contact-form button:focus {
     background-color: #d87c45;
     outline: none;
 }

 .contact-info {
     flex: 1 1 350px;
     font-size: 1rem;
     line-height: 1.6;
     color: #5b3a1a;
 }

 .contact-info h3 {
     font-size: 1.3rem;
     font-weight: 700;
     margin-bottom: 10px;
     color: #7a3e16;
 }

 .contact-info p {
     margin-bottom: 14px;
 }

 /* Адаптивність */
 @media (max-width: 700px) {
     .contact-wrapper {
         flex-direction: column;
     }

     .contact-form,
     .contact-info {
         flex: 1 1 100%;
     }

     .contact-form button {
         align-self: center;
     }
 }

 .footer {
     background-color: #b35a35;
     padding: 20px 0;
     color: #fff;
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
 }

 .footer .container {
     max-width: 1200px;
     margin: 0 auto;
     display: flex;
     justify-content: center;
 }

 .footer-nav {
     display: flex;
     gap: 40px;
 }

 .footer-link {
     color: #fff;
     font-weight: 600;
     text-decoration: none;
     transition: color 0.3s ease;
 }

 .footer-link:hover,
 .footer-link:focus {
     color: #f5e0d3;
     outline: none;
 }

 @media (max-width: 600px) {
     .footer .container {
         flex-direction: column;
         gap: 15px;
         align-items: center;
     }

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

 .privacy-policy {
     background-color: #fff8f1;
     padding: 60px 20px;
     color: #6a4421;
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
 }

 .privacy-policy .container {
     max-width: 900px;
     margin: 0 auto;
 }

 .privacy-policy h2 {
     font-size: 2.8rem;
     font-weight: 700;
     margin-bottom: 30px;
     color: #b35a35;
     text-align: center;
 }

 .privacy-policy h3 {
     font-size: 1.8rem;
     margin-top: 30px;
     margin-bottom: 15px;
     font-weight: 700;
     color: #7a3e16;
 }

 .privacy-policy p,
 .privacy-policy ul {
     font-size: 1.1rem;
     line-height: 1.7;
     margin-bottom: 20px;
     color: #5b3a1a;
 }

 .privacy-policy ul {
     list-style: disc inside;
     padding-left: 0;
 }

 .privacy-policy ul li {
     margin-bottom: 10px;
 }.terms-of-service {
  background-color: #fff8f1;
  padding: 60px 20px;
  color: #6a4421;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.terms-of-service .container {
  max-width: 900px;
  margin: 0 auto;
}

.terms-of-service h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: #b35a35;
  text-align: center;
}

.terms-of-service h3 {
  font-size: 1.8rem;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 700;
  color: #7a3e16;
}

.terms-of-service p,
.terms-of-service ul {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #5b3a1a;
}

.terms-of-service ul {
  list-style: disc inside;
  padding-left: 0;
}

.terms-of-service ul li {
  margin-bottom: 10px;
}
.cookies-policy {
  background-color: #fff8f1;
  padding: 60px 20px;
  color: #6a4421;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.cookies-policy .container {
  max-width: 900px;
  margin: 0 auto;
}

.cookies-policy h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: #b35a35;
  text-align: center;
}

.cookies-policy h3 {
  font-size: 1.8rem;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 700;
  color: #7a3e16;
}

.cookies-policy p,
.cookies-policy ul,
.cookies-policy ol {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #5b3a1a;
}

.cookies-policy ul,
.cookies-policy ol {
  padding-left: 20px;
}

.cookies-policy ul li,
.cookies-policy ol li {
  margin-bottom: 10px;
}
