 :root {
     --primary: #3A1F04;
     --secondary: #C0571C;
     --accent: #FF9500;
     --bg: #F5E9DC;
     --text: #1A0A00;
     --random1: #8C4E03;
     --random2: #5E2C04;
     --random3: #D9A441;
 }

 @font-face {
     font-family: 'Grotesque';
     src: url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;700&display=swap');
 }

 @font-face {
     font-family: 'Pixel';
     src: url('https://fonts.googleapis.com/css2?family=VT323&display=swap');
 }

 body {
     font-family: 'Grotesque', sans-serif;
     margin: 0;
     padding: 0;
     background-color: var(--bg);
     color: var(--text);
     overflow-x: hidden;
     line-height: 1.6;
 }

 header {
     background: linear-gradient(135deg, var(--primary) 0%, var(--random2) 100%);
     padding: 1rem;
     position: fixed;
     width: 100%;
     z-index: 1000;
     box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
 }

 .header-container {
     display: flex;
     justify-content: space-between;
     align-items: center;
     max-width: 1200px;
     margin: 0 auto;
 }

 .logo {
     font-family: 'Pixel', monospace;
     font-size: 2rem;
     color: white;
     text-decoration: none;
     animation: glitch 2s infinite alternate;
 }

 @keyframes glitch {
     0% {
         text-shadow: 2px 0 var(--accent);
     }

     20% {
         text-shadow: -2px 0 var(--secondary);
     }

     40% {
         text-shadow: 2px 0 var(--random3);
     }

     60% {
         text-shadow: -2px 0 var(--random1);
     }

     80% {
         text-shadow: 2px 0 var(--accent);
     }

     100% {
         text-shadow: -2px 0 var(--secondary);
     }
 }

 nav ul {
     display: flex;
     list-style: none;
     margin: 0;
     padding: 0;
 }

 nav ul li {
     margin-left: 2rem;
 }

 nav ul li a {
     color: white;
     text-decoration: none;
     font-weight: bold;
     transition: all 0.3s ease;
     position: relative;
 }

 nav ul li a:hover {
     color: var(--accent);
 }

 nav ul li a::after {
     content: '';
     position: absolute;
     width: 0;
     height: 2px;
     bottom: -5px;
     left: 0;
     background-color: var(--accent);
     transition: width 0.3s ease;
 }

 nav ul li a:hover::after {
     width: 100%;
 }

 .burger {
     display: none;
     cursor: pointer;
 }

 .burger div {
     width: 25px;
     height: 3px;
     background-color: white;
     margin: 5px;
     transition: all 0.3s ease;
 }

 main {
     padding-top: 80px;
 }

 section {
     padding: 4rem 1rem;
     margin: 0 auto;
     max-width: 1200px;
     position: relative;
 }

 .hero {
     height: 80vh;
     display: flex;
     align-items: center;
     background: url('../img/1.jpg') no-repeat center center;
     background-size: cover;
     color: white;
     text-align: center;
     position: relative;
 }

 .hero::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.6);
 }

 .hero-content {
     position: relative;
     z-index: 1;
     width: 100%;
 }

 .hero h1 {
     font-size: 4rem;
     margin-bottom: 1rem;
     text-transform: uppercase;
     letter-spacing: 5px;
 }

 .hero p {
     font-size: 1.5rem;
     max-width: 800px;
     margin: 0 auto 2rem;
 }

 .btn {
     display: inline-block;
     padding: 1rem 2rem;
     background-color: var(--accent);
     color: var(--primary);
     text-decoration: none;
     font-weight: bold;
     border-radius: 50px;
     transition: all 0.3s ease;
     border: none;
     cursor: pointer;
     font-size: 1.1rem;
 }

 .btn:hover {
     background-color: var(--secondary);
     color: white;
     transform: translateY(-3px);
     box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
 }

 .services {
     background-color: var(--random3);
     clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
     padding: 8rem 1rem;
     margin: -5rem 0;
 }

 .services-container {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 2rem;
 }

 .service-card {
     background-color: white;
     padding: 2rem;
     border-radius: 10px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
     transition: all 0.3s ease;
     position: relative;
     overflow: hidden;
 }

 .service-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
 }

 .service-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 5px;
     height: 100%;
     background-color: var(--accent);
 }

 .service-card h3 {
     font-size: 1.5rem;
     margin-bottom: 1rem;
     color: var(--primary);
 }

 .about {
     display: flex;
     align-items: center;
     gap: 4rem;
     margin-top: 5rem;
 }

 .about-img {
     flex: 1;
     border-radius: 20px;
     overflow: hidden;
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
     transform: rotate(-5deg);
     transition: all 0.5s ease;
 }

 .about-img:hover {
     transform: rotate(0deg);
 }

 .about-img img {
     width: 100%;
     height: auto;
     display: block;
 }

 .about-content {
     flex: 1;
 }

 .about-content h2 {
     font-size: 3rem;
     margin-bottom: 1.5rem;
     color: var(--primary);
 }

 .stats {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 2rem;
     margin-top: 3rem;
 }

 .stat-item {
     text-align: center;
     padding: 1.5rem;
     background-color: white;
     border-radius: 10px;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
 }

 .stat-item h3 {
     font-size: 2.5rem;
     color: var(--accent);
     margin-bottom: 0.5rem;
 }

 .pricing {
     background-color: var(--random1);
     color: white;
     text-align: center;
     padding: 6rem 1rem;
     clip-path: polygon(0 10%, 100% 0, 100% 90%, 0 100%);
     margin: -3rem 0;
 }

 .pricing h2 {
     font-size: 3rem;
     margin-bottom: 3rem;
 }

 .pricing-cards {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 2rem;
     max-width: 1000px;
     margin: 0 auto;
 }

 .pricing-card {
     background-color: white;
     color: var(--text);
     padding: 2rem;
     border-radius: 10px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
     transition: all 0.3s ease;
     position: relative;
     overflow: hidden;
 }

 .pricing-card:hover {
     transform: scale(1.05);
 }

 .pricing-card.popular::before {
     content: 'POPOLARE';
     position: absolute;
     top: 10px;
     right: -30px;
     background-color: var(--accent);
     color: white;
     padding: 0.5rem 3rem;
     transform: rotate(45deg);
     font-size: 0.8rem;
     font-weight: bold;
 }

 .pricing-card h3 {
     font-size: 1.8rem;
     margin-bottom: 1rem;
     color: var(--primary);
 }

 .price {
     font-size: 3rem;
     font-weight: bold;
     margin: 1.5rem 0;
     color: var(--accent);
 }

 .price span {
     font-size: 1rem;
     color: var(--text);
 }

 .pricing-card ul {
     list-style: none;
     padding: 0;
     margin: 2rem 0;
     text-align: left;
 }

 .pricing-card ul li {
     margin-bottom: 0.8rem;
     position: relative;
     padding-left: 1.5rem;
 }

 .pricing-card ul li::before {
     content: '✓';
     position: absolute;
     left: 0;
     color: var(--accent);
     font-weight: bold;
 }

 .faq {
     background-color: var(--bg);
     padding: 6rem 1rem;
 }

 .faq h2 {
     text-align: center;
     font-size: 3rem;
     margin-bottom: 3rem;
     color: var(--primary);
 }

 .faq-container {
     max-width: 800px;
     margin: 0 auto;
 }

 .faq-item {
     margin-bottom: 1rem;
     border: 1px solid var(--random2);
     border-radius: 10px;
     overflow: hidden;
 }

 .faq-question {
     padding: 1.5rem;
     background-color: var(--random2);
     color: white;
     font-weight: bold;
     cursor: pointer;
     display: flex;
     justify-content: space-between;
     align-items: center;
     transition: all 0.3s ease;
 }

 .faq-question:hover {
     background-color: var(--primary);
 }

 .faq-answer {
     padding: 0 1.5rem;
     max-height: 0;
     overflow: hidden;
     transition: max-height 0.3s ease;
     background-color: white;
 }

 .faq-answer.active {
     padding: 1.5rem;
     max-height: 500px;
 }

 .contact {
     background: linear-gradient(135deg, var(--primary) 0%, var(--random2) 100%);
     color: white;
     padding: 6rem 1rem;
     clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
     margin: -3rem 0;
 }

 .contact-container {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 4rem;
     max-width: 1200px;
     margin: 0 auto;
 }

 .contact-info h2 {
     font-size: 3rem;
     margin-bottom: 2rem;
 }

 .contact-info p {
     margin-bottom: 1.5rem;
     font-size: 1.1rem;
 }

 .contact-details {
     margin-top: 2rem;
 }

 .contact-details div {
     display: flex;
     align-items: center;
     margin-bottom: 1rem;
 }

 .contact-details i {
     margin-right: 1rem;
     font-size: 1.5rem;
     color: var(--accent);
 }

 .contact-form {
     background-color: white;
     padding: 2rem;
     border-radius: 10px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
 }

 .contact-form h3 {
     color: var(--primary);
     font-size: 2rem;
     margin-bottom: 1.5rem;
 }

 .form-group {
     margin-bottom: 1.5rem;
 }

 .form-group label {
     display: block;
     margin-bottom: 0.5rem;
     color: var(--text);
     font-weight: bold;
 }

 .form-group input,
 .form-group textarea {
     width: 89%;
     padding: 1rem;
     border: 1px solid #ddd;
     border-radius: 5px;
     font-family: inherit;
     font-size: 1rem;
 }

 .form-group textarea {
     min-height: 150px;
 }

 .testimonials {
     padding: 6rem 1rem;
     text-align: center;
 }

 .testimonials h2 {
     font-size: 3rem;
     margin-bottom: 3rem;
     color: var(--primary);
 }

 .testimonial-slider {
     max-width: 800px;
     margin: 0 auto;
     position: relative;
 }

 .testimonial {
     background-color: white;
     padding: 2rem;
     border-radius: 10px;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
     margin: 0 1rem;
     display: none;
 }

 .testimonial.active {
     display: block;
     animation: fadeIn 0.5s ease;
 }

 @keyframes fadeIn {
     from {
         opacity: 0;
         transform: translateY(20px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 .testimonial-text {
     font-size: 1.2rem;
     font-style: italic;
     margin-bottom: 1.5rem;
     position: relative;
 }

 .testimonial-text::before,
 .testimonial-text::after {
     content: '"';
     font-size: 2rem;
     color: var(--accent);
     opacity: 0.5;
 }

 .testimonial-text::before {
     position: absolute;
     top: -10px;
     left: -15px;
 }

 .testimonial-text::after {
     position: absolute;
     bottom: -30px;
     right: -15px;
 }

 .testimonial-author {
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .testimonial-author img {
     width: 60px;
     height: 60px;
     border-radius: 50%;
     object-fit: cover;
     margin-right: 1rem;
 }

 .author-info h4 {
     margin: 0;
     color: var(--primary);
 }

 .author-info p {
     margin: 0;
     color: var(--random2);
     font-size: 0.9rem;
 }

 .testimonial-nav {
     margin-top: 2rem;
     display: flex;
     justify-content: center;
     gap: 1rem;
 }

 .testimonial-nav button {
     width: 12px;
     height: 12px;
     border-radius: 50%;
     border: none;
     background-color: #ddd;
     cursor: pointer;
     padding: 0;
 }

 .testimonial-nav button.active {
     background-color: var(--accent);
 }

 .partners {
     background-color: var(--random3);
     padding: 4rem 1rem;
     text-align: center;
 }

 .partners h2 {
     font-size: 2.5rem;
     margin-bottom: 3rem;
     color: var(--primary);
 }

 .partner-logos {
     display: flex;
     justify-content: center;
     flex-wrap: wrap;
     gap: 3rem;
     max-width: 1000px;
     margin: 0 auto;
 }

 .partner-logos img {
     height: 60px;
     filter: grayscale(100%);
     opacity: 0.7;
     transition: all 0.3s ease;
 }

 .partner-logos img:hover {
     filter: grayscale(0%);
     opacity: 1;
     transform: scale(1.1);
 }

 .disclaimer {
     background-color: var(--random1);
     color: white;
     padding: 3rem 1rem;
     text-align: center;
     font-size: 0.9rem;
 }

 footer {
     background-color: var(--primary);
     color: white;
     padding: 4rem 1rem 2rem;
 }

 .footer-container {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 2rem;
     max-width: 1200px;
     margin: 0 auto;
 }

 .footer-col h3 {
     font-size: 1.5rem;
     margin-bottom: 1.5rem;
     position: relative;
     display: inline-block;
 }

 .footer-col h3::after {
     content: '';
     position: absolute;
     bottom: -10px;
     left: 0;
     width: 50px;
     height: 3px;
     background-color: var(--accent);
 }

 .footer-col ul {
     list-style: none;
     padding: 0;
 }

 .footer-col ul li {
     margin-bottom: 0.8rem;
 }

 .footer-col ul li a {
     color: #ddd;
     text-decoration: none;
     transition: all 0.3s ease;
 }

 .footer-col ul li a:hover {
     color: var(--accent);
     padding-left: 5px;
 }

 .footer-bottom {
     text-align: center;
     padding-top: 2rem;
     margin-top: 2rem;
     border-top: 1px solid rgba(255, 255, 255, 0.1);
     font-size: 0.9rem;
 }

 .cookie-consent {
     position: fixed;
     bottom: 20px;
     left: 20px;
     right: 20px;
     background-color: var(--primary);
     color: white;
     padding: 1rem;
     border-radius: 10px;
     box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
     z-index: 1000;
 }

 .cookie-consent p {
     margin-bottom: 1rem;
 }

 .cookie-buttons {
     display: flex;
     gap: 1rem;
 }

 .cookie-btn {
     padding: 0.5rem 1rem;
     border: none;
     border-radius: 5px;
     cursor: pointer;
     font-weight: bold;
 }

 .cookie-accept {
     background-color: var(--accent);
     color: var(--primary);
 }

 .cookie-decline {
     background-color: transparent;
     color: white;
     border: 1px solid white;
 }

 .floating-elements {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     pointer-events: none;
     z-index: -1;
 }

 .floating-element {
     position: absolute;
     background-color: var(--accent);
     opacity: 0.1;
     border-radius: 50%;
     animation: float 15s infinite linear;
 }

 @keyframes float {
     0% {
         transform: translate(0, 0) rotate(0deg);
     }

     25% {
         transform: translate(50vw, 25vh) rotate(90deg);
     }

     50% {
         transform: translate(25vw, 50vh) rotate(180deg);
     }

     75% {
         transform: translate(75vw, 75vh) rotate(270deg);
     }

     100% {
         transform: translate(0, 0) rotate(360deg);
     }
 }

 @media (max-width: 768px) {
     nav ul {
         display: none;
         position: absolute;
         top: 70px;
         left: 0;
         width: 100%;
         background-color: var(--primary);
         flex-direction: column;
         padding: 1rem 0;
         box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
     }

     nav ul.active {
         display: flex;
     }

     nav ul li {
         margin: 0;
         text-align: center;
         padding: 1rem 0;
     }

     .burger {
         display: block;
             margin: 0 25px 0 auto;
     }

     .burger.active div:nth-child(1) {
         transform: rotate(-45deg) translate(-5px, 6px);
     }

     .burger.active div:nth-child(2) {
         opacity: 0;
     }

     .burger.active div:nth-child(3) {
         transform: rotate(45deg) translate(-5px, -6px);
     }

     .hero h1 {
         font-size: 2.5rem;
     }

     .hero p {
         font-size: 1.2rem;
     }

     .about {
         flex-direction: column;
     }

     .about-img {
         margin-bottom: 2rem;
     }

     .stats {
         grid-template-columns: repeat(2, 1fr);
     }

     .contact-container {
         grid-template-columns: 1fr;
     }

     .footer-container {
         grid-template-columns: 1fr;
     }

     .cookie-consent {
         left: 10px;
         right: 10px;
         bottom: 10px;
     }

     .cookie-buttons {
         flex-direction: column;
     }
 }