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

 body {
   background-color: #000;
   color: #fff;
   font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
   line-height: 1.5;
 }

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

 .container {
   max-width: 1200px;
   margin: 0 auto;
   padding: 40px 20px;
 }

 nav.navbar {
   background-color: #000;
   border-bottom: 3px solid #ff6600;
   position: sticky;
   top: 0;
   z-index: 1000;
 }

 .navbar .container {
   display: flex;
   align-items: center;
   justify-content: space-between;
   height: 120px;
 }

 .navbar .logo {
   font-weight: 700;
   font-size: 1.8rem;
   color: #ff6600;
 }

 /* Меню список */
 .navbar ul.menu {
   list-style: none;
   display: flex;
   gap: 25px;
 }

 .navbar ul.menu li a {
   font-weight: 600;
   font-size: 1rem;
   padding: 8px 12px;
   border-radius: 5px;
   transition: background-color 0.3s ease, color 0.3s ease;
 }

 .navbar ul.menu li a:hover,
 .navbar ul.menu li a:focus {
   background-color: #ff6600;
   color: #000;
 }

 #menu-toggle {
   display: none;
 }

 .menu-icon {
   display: none;
   font-size: 2rem;
   color: #ff6600;
   cursor: pointer;
   user-select: none;
 }

 @media (max-width: 768px) {
   .navbar ul.menu {
     position: fixed;
     top: 60px;
     right: 0;
     background-color: #000;
     height: calc(100% - 60px);
     width: 250px;
     flex-direction: column;
     padding-top: 20px;
     gap: 15px;
     transform: translateX(100%);
     transition: transform 0.3s ease;
     box-shadow: -3px 0 5px rgba(255, 102, 0, 0.3);
   }

   #menu-toggle:checked+.menu-icon+ul.menu {
     transform: translateX(0);
   }

   .menu-icon {
     display: block;
   }

   .navbar ul.menu li a {
     font-size: 1.2rem;
     padding: 12px 20px;
   }
 }

 .hero-section {
   position: relative;
   background-image: url('../img/hero.png');
   background-size: cover;
   background-position: center;
   min-height: 400px;
   display: flex;
   align-items: center;
   justify-content: center;
   color: #ff6600;
   font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
   text-align: center;
 }

 .hero-overlay {
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   background: rgba(0, 0, 0, 0.65);
   display: flex;
   align-items: center;
   justify-content: center;
   padding: 20px;
 }

 .hero-text {
   position: relative;
   max-width: 900px;
 }

 .hero-text h1 {
   font-size: 2rem;
   margin-bottom: 1rem;
   font-weight: 700;
   color: #ff6600;
 }

 .hero-text p {
   font-size: 1.1rem;
   line-height: 1.5;
   color: #fff;
   margin-bottom: 0.8rem;
 }

 /* Адаптивність */
 @media (max-width: 768px) {
   .hero-section {
     height: auto;
     padding: 60px 20px;
   }

   .hero-text h1 {
     font-size: 1.5rem;
   }

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

 .about-section {
   display: flex;
   gap: 40px;
   align-items: center;
   flex-wrap: wrap;
   margin-bottom: 60px;
 }

 .about-image img {
   width: 100%;
   max-width: 500px;
   border-radius: 10px;
   box-shadow: 0 0 20px rgba(255, 102, 0, 0.7);
   object-fit: cover;
 }

 .about-text {
   flex: 1;
   background: rgba(0, 0, 0, 0.7);
   padding: 25px 30px;
   border-radius: 10px;
   box-shadow: 0 0 15px rgba(255, 102, 0, 0.6);
 }

 .about-text h2 {
   color: #ff6600;
   font-size: 2rem;
   margin-bottom: 1rem;
   font-weight: 700;
 }

 .about-text p {
   color: #ddd;
   font-size: 1.1rem;
   margin-bottom: 1rem;
 }

 /* Блок "Послуги" */
 .services-section h2 {
   color: #ff6600;
   font-size: 2.4rem;
   margin-bottom: 0.5rem;
   font-weight: 700;
   text-align: center;
 }

 .services-subtitle {
   font-size: 1.2rem;
   margin-bottom: 40px;
   color: #ddd;
   max-width: 600px;
   margin-left: auto;
   margin-right: auto;
   text-align: center;
 }

 .services-list {
   display: flex;
   gap: 30px;
   justify-content: center;
   flex-wrap: wrap;
 }

 .service-item {
   background-color: #111;
   border-radius: 10px;
   box-shadow: 0 0 15px rgba(255, 102, 0, 0.6);
   padding: 20px;
   max-width: 320px;
   flex: 1 1 280px;
   transition: transform 0.3s ease;
   color: #ddd;
   text-align: center;
 }

 .service-item:hover {
   transform: translateY(-8px);
   box-shadow: 0 0 25px rgba(255, 102, 0, 0.9);
 }

 .service-item img {
   width: 100%;
   object-fit: cover;
   border-radius: 8px;
   margin-bottom: 15px;
   box-shadow: 0 0 10px rgba(255, 102, 0, 0.6);
 }

 .service-item h3 {
   color: #ff6600;
   font-size: 1.4rem;
   margin-bottom: 0.8rem;
   font-weight: 700;
 }

 .service-item p {
   font-size: 1rem;
   line-height: 1.4;
 }

 .services-footer-text {
   margin-top: 50px;
   font-size: 1.1rem;
   max-width: 650px;
   margin-left: auto;
   margin-right: auto;
   color: #ddd;
   font-style: italic;
   text-align: center;
 }

 /* Адаптивність для блоків */
 @media (max-width: 768px) {
   .about-section {
     flex-direction: column;
   }

   .about-image img {
     max-width: 90%;
     margin: 0 auto 30px;
   }

   .services-list {
     flex-direction: column;
     gap: 25px;
   }

   .service-item {
     max-width: 100%;
   }
 }

 .why-us-section {
   background-color: #000;
   color: #fff;
   padding: 60px 20px;
   font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
 }

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

 .why-us-image img {
   width: 100%;
   max-width: 500px;
   border-radius: 10px;
   box-shadow: 0 0 20px rgba(255, 102, 0, 0.7);
   object-fit: cover;
 }

 .why-us-text {
   flex: 1;
   background: rgba(0, 0, 0, 0.7);
   padding: 25px 30px;
   border-radius: 10px;
   box-shadow: 0 0 15px rgba(255, 102, 0, 0.6);
 }

 .why-us-text h2 {
   color: #ff6600;
   font-size: 2rem;
   margin-bottom: 1rem;
   font-weight: 700;
 }

 .why-us-text p {
   font-size: 1.1rem;
   line-height: 1.6;
   margin-bottom: 1rem;
   color: #ddd;
 }

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

   .why-us-image img {
     max-width: 90%;
     margin: 0 auto 30px;
   }
 }

 .models-section {
   background-color: #000;
   color: #fff;
   padding: 60px 20px;
   font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
 }

 .models-section h2 {
   color: #ff6600;
   font-size: 2.4rem;
   margin-bottom: 0.5rem;
   font-weight: 700;
   text-align: center;
 }

 .models-subtitle {
   font-size: 1.2rem;
   margin-bottom: 40px;
   color: #ddd;
   max-width: 600px;
   margin-left: auto;
   margin-right: auto;
   text-align: center;
 }

 .models-list {
   display: flex;
   flex-wrap: wrap;
   gap: 30px;
   justify-content: center;
 }

 .model-item {
   background-color: #111;
   border-radius: 10px;
   box-shadow: 0 0 15px rgba(255, 102, 0, 0.6);
   padding: 20px;
   max-width: 320px;
   flex: 1 1 280px;
   transition: transform 0.3s ease;
   color: #ddd;
   text-align: center;
 }

 .model-item:hover {
   transform: translateY(-8px);
   box-shadow: 0 0 25px rgba(255, 102, 0, 0.9);
 }

 .model-item img {
   width: 100%;
   height: 250px;
   background: white;
   object-fit: cover;
   border-radius: 8px;
   margin-bottom: 15px;
   box-shadow: 0 0 10px rgba(255, 102, 0, 0.6);
 }

 .model-item h3 {
   color: #ff6600;
   font-size: 1.4rem;
   margin-bottom: 0.8rem;
   font-weight: 700;
 }

 .model-item p {
   font-size: 1rem;
   line-height: 1.4;
 }

 /* Адаптивність */
 @media (max-width: 768px) {
   .models-list {
     flex-direction: column;
     gap: 25px;
   }

   .model-item {
     max-width: 100%;
   }
 }

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

 .reviews-section h2 {
   color: #ff6600;
   font-size: 2rem;
   margin-bottom: 40px;
   font-weight: 700;
   max-width: 700px;
   margin-left: auto;
   margin-right: auto;
 }

 .reviews-slider {
   position: relative;
   max-width: 700px;
   margin: 0 auto 20px;
   min-height: 140px;
 }

 .review-item {
   display: none;
   font-size: 1.1rem;
   line-height: 1.6;
   color: #ddd;
   padding: 0 20px;
   border-radius: 12px;
   background: rgba(17, 17, 17, 0.8);
   box-shadow: 0 0 20px rgba(255, 102, 0, 0.5);
 }

 .review-item.active {
   display: block;
 }

 .review-text {
   margin-bottom: 15px;
   font-style: italic;
 }

 .review-author {
   color: #ff6600;
   font-weight: 700;
   font-size: 1.2rem;
 }

 /* Кнопки управління */
 .reviews-controls {
   display: flex;
   justify-content: center;
   gap: 30px;
 }

 .reviews-controls button {
   background: #ff6600;
   border: none;
   color: #000;
   font-size: 2rem;
   width: 50px;
   height: 50px;
   border-radius: 50%;
   cursor: pointer;
   transition: background-color 0.3s ease;
   user-select: none;
 }

 .reviews-controls button:hover {
   background-color: #e65500;
 }

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

   .reviews-slider {
     max-width: 90%;
   }
 }

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

 .contact-container {
   max-width: 1200px;
   margin: 0 auto;
   display: flex;
   gap: 50px;
   flex-wrap: wrap;
 }

 .contact-info {
   flex: 1;
   min-width: 280px;
   background: rgba(0, 0, 0, 0.7);
   padding: 25px 30px;
   border-radius: 10px;
   box-shadow: 0 0 15px rgba(255, 102, 0, 0.6);
 }

 .contact-info h2 {
   color: #ff6600;
   font-size: 2rem;
   margin-bottom: 1rem;
   font-weight: 700;
 }

 .contact-info p {
   font-size: 1rem;
   line-height: 1.5;
   margin-bottom: 1rem;
 }

 .contact-info a {
   color: #ff6600;
   text-decoration: underline;
 }

 .contact-subtitle {
   font-style: italic;
   color: #ddd;
   margin-top: 20px;
 }

 /* Форма */
 .contact-form {
   flex: 1;
   min-width: 280px;
   background: rgba(0, 0, 0, 0.7);
   padding: 25px 30px;
   border-radius: 10px;
   box-shadow: 0 0 15px rgba(255, 102, 0, 0.6);
 }

 .contact-form h2 {
   color: #ff6600;
   font-size: 2rem;
   margin-bottom: 1.5rem;
   font-weight: 700;
   text-align: center;
 }

 .contact-form label {
   display: block;
   margin-bottom: 6px;
   font-weight: 600;
   color: #ddd;
 }

 .contact-form input,
 .contact-form textarea {
   width: 100%;
   padding: 10px 12px;
   margin-bottom: 20px;
   border: none;
   border-radius: 6px;
   background-color: #222;
   color: #fff;
   font-size: 1rem;
   resize: vertical;
 }

 .contact-form input::placeholder,
 .contact-form textarea::placeholder {
   color: #999;
 }

 .contact-form button {
   width: 100%;
   padding: 12px 0;
   background-color: #ff6600;
   border: none;
   border-radius: 6px;
   font-weight: 700;
   font-size: 1.2rem;
   color: #000;
   cursor: pointer;
   transition: background-color 0.3s ease;
 }

 .contact-form button:hover {
   background-color: #e65500;
 }

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

   .contact-info,
   .contact-form {
     min-width: 100%;
   }
 }

 .footer {
   background-color: #000;
   border-top: 3px solid #ff6600;
   padding: 20px 0;
   color: #ccc;
   font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
   text-align: center;
 }

 .footer-container {
   max-width: 1200px;
   margin: 0 auto;
   padding: 0 20px;
 }

 .footer-nav {
   display: flex;
   justify-content: center;
   gap: 30px;
   margin-bottom: 10px;
   flex-wrap: wrap;
 }

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

 .footer-link:hover,
 .footer-link:focus {
   color: #e65500;
 }

 .footer-copy {
   font-size: 0.9rem;
   color: #777;
 }

 .privacy-policy-section {
   background-color: #000;
   color: #fff;
   padding: 60px 20px;
   font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
   max-width: 1200px;
   margin: 0 auto 80px auto;
   line-height: 1.6;
 }

 .privacy-policy-section h2 {
   color: #ff6600;
   font-size: 2.2rem;
   font-weight: 700;
   margin-bottom: 20px;
   text-align: center;
 }

 .privacy-policy-section h3 {
   color: #ff6600;
   margin-top: 30px;
   margin-bottom: 10px;
   font-weight: 700;
   font-size: 1.4rem;
 }

 .privacy-policy-section p {
   margin-bottom: 15px;
   color: #ddd;
   font-size: 1rem;
 }

 .privacy-policy-section ul {
   margin-left: 20px;
   margin-bottom: 15px;
   color: #ddd;
   list-style-type: disc;
 }

 .privacy-policy-section a {
   color: #ff6600;
   text-decoration: underline;
 }

 .privacy-policy-section a:hover,
 .privacy-policy-section a:focus {
   color: #e65500;
 }

 /* Адаптивність */
 @media (max-width: 768px) {
   .privacy-policy-section {
     padding: 40px 15px;
   }

   .privacy-policy-section h2 {
     font-size: 1.8rem;
   }

   .privacy-policy-section h3 {
     font-size: 1.2rem;
   }
 }

 .terms-section {
   background-color: #000;
   color: #fff;
   padding: 60px 20px;
   font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
   max-width: 1200px;
   margin: 0 auto 80px auto;
   line-height: 1.6;
 }

 .terms-section h2 {
   color: #ff6600;
   font-size: 2.2rem;
   font-weight: 700;
   margin-bottom: 20px;
   text-align: center;
 }

 .terms-section h3 {
   color: #ff6600;
   margin-top: 30px;
   margin-bottom: 10px;
   font-weight: 700;
   font-size: 1.4rem;
 }

 .terms-section p {
   margin-bottom: 15px;
   color: #ddd;
   font-size: 1rem;
 }

 .terms-section ul {
   margin-left: 20px;
   margin-bottom: 15px;
   color: #ddd;
   list-style-type: disc;
 }

 .terms-section a {
   color: #ff6600;
   text-decoration: underline;
 }

 .terms-section a:hover,
 .terms-section a:focus {
   color: #e65500;
 }

 /* Адаптивність */
 @media (max-width: 768px) {
   .terms-section {
     padding: 40px 15px;
   }

   .terms-section h2 {
     font-size: 1.8rem;
   }

   .terms-section h3 {
     font-size: 1.2rem;
   }
 }

 .cookies-policy-section {
   background-color: #000;
   color: #fff;
   padding: 60px 20px;
   font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
   max-width: 1200px;
   margin: 0 auto 80px auto;
   line-height: 1.6;
 }

 .cookies-policy-section h2 {
   color: #ff6600;
   font-size: 2.2rem;
   font-weight: 700;
   margin-bottom: 20px;
   text-align: center;
 }

 .cookies-policy-section h3 {
   color: #ff6600;
   margin-top: 30px;
   margin-bottom: 10px;
   font-weight: 700;
   font-size: 1.4rem;
 }

 .cookies-policy-section p {
   margin-bottom: 15px;
   color: #ddd;
   font-size: 1rem;
 }

 .cookies-policy-section ul {
   margin-left: 20px;
   margin-bottom: 15px;
   color: #ddd;
   list-style-type: disc;
 }

 .cookies-policy-section a {
   color: #ff6600;
   text-decoration: underline;
 }

 .cookies-policy-section a:hover,
 .cookies-policy-section a:focus {
   color: #e65500;
 }

 @media (max-width: 768px) {
   .cookies-policy-section {
     padding: 40px 15px;
   }

   .cookies-policy-section h2 {
     font-size: 1.8rem;
   }

   .cookies-policy-section h3 {
     font-size: 1.2rem;
   }
 }

 .cookie-banner {
   position: fixed;
   bottom: 0;
   left: 0;
   right: 0;
   background-color: #0e0c2a;
   color: #ff6600;
   padding: 20px;
   font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
   box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.2);
   z-index: 1000;
 }

 .cookie-content p {
   margin: 0 0 10px 0;
   font-size: 1rem;
 }

 .cookie-buttons,
 .settings-buttons {
   display: flex;
   gap: 10px;
 }

 .btn {
   background-color: transparent;
   border: 2px solid #ff6600;
   color: #ff6600;
   padding: 8px 16px;
   cursor: pointer;
   border-radius: 4px;
   font-weight: 600;
   transition: background-color 0.3s, color 0.3s;
 }

 .btn:hover {
   background-color: #ff6600;
   color: #0e0c2a;
 }

 .cookie-settings {
   margin-top: 15px;
   border-top: 1px solid #ff6600;
   padding-top: 15px;
 }

 .cookie-settings.hidden {
   display: none;
 }

 .cookie-settings h3 {
   margin-top: 0;
   margin-bottom: 10px;
   color: #ff6600;
 }

 .cookie-settings label {
   display: block;
   margin-bottom: 8px;
   font-size: 0.95rem;
   cursor: pointer;
 }

 .cookie-settings input[type="checkbox"] {
   margin-right: 8px;
 }