/* 
 * domain - Financial Audit Services
 * Main Stylesheet
 */

/* ===== Base Styles ===== */
:root {
  --primary-color: #3066be;
  --secondary-color: #119da4;
  --accent-color: #ff9505;
  --dark-color: #19323c;
  --light-color: #f3f4f6;
  --text-color: #2d3748;
  --border-radius: 8px;
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  background-color: #fff;
}

section[id] {
  scroll-margin-top: 80px;
}

div {
  word-break: break-word;
  overflow-wrap: break-word;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0.5em;
  line-height: 1.2;
  font-weight: 700;
  color: var(--dark-color);
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--secondary-color);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.5rem;
  position: relative;
  margin-bottom: 1rem;
}

.section-header h2::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 4px;
  background-color: var(--accent-color);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.section-header p {
  font-size: 1.2rem;
  color: #64748b;
  max-width: 600px;
  margin: 1.5rem auto 0;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  transition: var(--transition);
}

.cta-button {
  background-color: var(--accent-color);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  display: inline-block;
  text-align: center;
  transition: var(--transition);
}

.cta-button:hover {
  background-color: #e58604;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.outline-button {
  background-color: transparent;
  color: var(--primary-color);
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  display: inline-block;
  text-align: center;
  border: 2px solid var(--primary-color);
  transition: var(--transition);
}

.outline-button:hover {
  background-color: var(--primary-color);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.icon {
  width: 24px;
  height: 24px;
  object-fit: cover;
  vertical-align: middle;
  margin-right: 10px;
}

/* ===== Header ===== */
header {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  text-transform: lowercase;
  letter-spacing: -1px;
  position: relative;
}

.logo::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  background-color: var(--accent-color);
  border-radius: 50%;
  top: -5px;
  left: -5px;
  z-index: -1;
  opacity: 0.6;
}

.logo:hover {
  color: var(--secondary-color);
}

/* ===== Navigation ===== */
.main-nav ul {
  display: flex;
  gap: 1.5rem;
}

.main-nav a {
  color: var(--dark-color);
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  bottom: 0;
  left: 0;
  transition: width 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.main-nav a.cta-button {
  color: #fff;
  padding: 0.5rem 1rem;
}

.main-nav a.cta-button::after {
  display: none;
}

/* Burger menu */
.menu-toggle {
  display: none;
}

.menu-button {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 24px;
  cursor: pointer;
  z-index: 1001;
}

.bar {
  height: 3px;
  width: 100%;
  background-color: var(--dark-color);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== Hero Section ===== */
.hero {
  background-image: url("./img/ZwdXT.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: calc(100vh - 80px);
  min-height: 500px;
  position: relative;
  display: flex;
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: #fff;
  animation: fadeInDown 1s ease;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease 0.3s forwards;
  opacity: 0;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  animation: fadeInUp 1s ease 0.6s forwards;
  opacity: 0;
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== About Section ===== */
.about {
  background-color: var(--light-color);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-text {
  padding-right: 20px;
}

.about-text h3 {
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.about-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.value-item {
  background-color: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 1.5rem;
  text-align: center;
  transition: var(--transition);
}

.value-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.value-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  overflow: hidden;
}

.value-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== Advantages Section ===== */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.advantage-card {
  background-color: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
}

.advantage-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.advantage-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
}

.advantage-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== Services Section ===== */
.services {
  background-color: var(--light-color);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  overflow: hidden;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-image {
  height: 200px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

.service-content {
  padding: 1.5rem;
}

.service-content h3 {
  margin-bottom: 0.75rem;
  color: var(--primary-color);
}

.service-features {
  margin: 1.5rem 0;
  padding-left: 1.5rem;
  list-style-type: disc;
}

.service-features li {
  margin-bottom: 0.5rem;
}

/* ===== Trust Section ===== */
.trust {
  position: relative;
  overflow: hidden;
  background-color: var(--primary-color);
  color: #fff;
}

.trust .section-header h2 {
  color: #fff;
}

.trust .section-header p {
  color: rgba(255, 255, 255, 0.8);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
}

.trust-item {
  position: relative;
  z-index: 1;
}

.trust-number {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--accent-color);
}

.trust-item p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
}

/* ===== Testimonials Section ===== */
.testimonials {
  background-color: var(--light-color);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background-color: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 2rem;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
  position: relative;
  margin-bottom: 2rem;
  padding: 0 1.5rem;
}

.testimonial-content::before {
  content: '"';
  font-size: 4rem;
  font-family: Georgia, serif;
  color: var(--secondary-color);
  opacity: 0.3;
  position: absolute;
  top: -20px;
  left: -10px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-info h4 {
  margin-bottom: 0.25rem;
  font-size: 1.1rem;
}

.testimonial-info p {
  margin-bottom: 0;
  font-size: 0.9rem;
  color: #64748b;
}

/* ===== Team Section ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.team-member {
  background-color: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  overflow: hidden;
  transition: var(--transition);
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.member-image {
  height: 250px;
  overflow: hidden;
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.team-member:hover .member-image img {
  transform: scale(1.05);
}

.member-info {
  padding: 1.5rem;
  text-align: center;
}

.member-role {
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* ===== Contact Section ===== */
.contact {
  background-color: var(--light-color);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-form {
  background-color: #fff;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.required {
  color: #e53e3e;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #cbd5e0;
  border-radius: var(--border-radius);
  font-size: 1rem;
  transition: var(--transition);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 3px rgba(48, 102, 190, 0.2);
}

select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2319323c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.7rem center;
  background-size: 1.2em;
  padding-right: 2.5rem;
}

select option {
  background-color: #fff;
  color: var(--text-color);
}

/* Policy Checkbox Styles - Completely New Design */
.checkbox-group {
  margin-bottom: 1.2rem;
  position: relative;
}

.checkbox-label {
  position: relative;
  display: block;
  padding-left: 35px;
  cursor: pointer;
  user-select: none;
}

.checkbox-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  height: 0;
  width: 0;
  cursor: pointer;
}

.checkbox-custom {
  position: absolute;
  top: 0;
  left: 0;
  height: 24px;
  width: 24px;
  background-color: #f8f9fa;
  border: 2px solid #e2e8f0;
  border-radius: 5px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.checkbox-label:hover input ~ .checkbox-custom {
  background-color: #edf2f7;
  transform: scale(1.05);
}

.checkbox-label input:checked ~ .checkbox-custom {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  transform: scale(1);
}

.checkbox-label input:focus ~ .checkbox-custom {
  box-shadow: 0 0 0 4px rgba(255, 149, 5, 0.2);
}

.checkbox-custom:after {
  content: "";
  position: absolute;
  display: none;
  left: 8px;
  top: 4px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) scale(1.2);
}

.checkbox-label input:checked ~ .checkbox-custom:after {
  display: block;
  animation: checkmark-pop 0.3s ease forwards;
}

@keyframes checkmark-pop {
  0% {
    opacity: 0;
    transform: rotate(45deg) scale(0);
  }
  50% {
    opacity: 1;
    transform: rotate(45deg) scale(1.4);
  }
  100% {
    opacity: 1;
    transform: rotate(45deg) scale(1.2);
  }
}

.checkbox-text {
  display: inline-block;
  padding-top: 2px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-color);
}

.checkbox-text .required {
  margin-left: 3px;
}

.checkbox-text a {
  color: var(--secondary-color);
  text-decoration: none;
  position: relative;
  font-weight: 600;
  transition: all 0.2s ease;
}

.checkbox-text a:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: var(--secondary-color);
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.3s ease-out;
}

.checkbox-text a:hover {
  color: var(--primary-color);
}

.checkbox-text a:hover:after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.form-submit {
  margin-top: 2rem;
}

.error-message {
  padding: 1rem;
  background-color: #fed7d7;
  color: #e53e3e;
  border-radius: var(--border-radius);
  margin-bottom: 1.5rem;
}

.error-message ul {
  padding-left: 1.5rem;
  list-style-type: disc;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  background-color: #fff;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.contact-list {
  margin-top: 1.5rem;
}

.contact-list li {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.contact-list li:last-child {
  margin-bottom: 0;
}

.contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 1rem;
  flex-shrink: 0;
}

.contact-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-text h4 {
  margin-bottom: 0.25rem;
  font-size: 1rem;
  color: var(--primary-color);
}

.contact-text a,
.contact-text address {
  font-style: normal;
  font-size: 0.95rem;
  color: var(--text-color);
}

.map-container {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  height: 300px;
}

/* ===== FAQ Section ===== */
.faq {
  background-color: #fff;
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.faq-item {
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.faq-toggle {
  display: none;
}

.faq-question {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
}

.faq-question:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.faq-icon {
  position: relative;
  width: 20px;
  height: 20px;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background-color: var(--dark-color);
  transition: var(--transition);
}

.faq-icon::before {
  top: 9px;
  left: 0;
  width: 100%;
  height: 2px;
}

.faq-icon::after {
  top: 0;
  left: 9px;
  width: 2px;
  height: 100%;
}

.faq-toggle:checked + .faq-question {
  background-color: var(--primary-color);
  color: #fff;
}

.faq-toggle:checked + .faq-question .faq-icon::before,
.faq-toggle:checked + .faq-question .faq-icon::after {
  background-color: #fff;
}

.faq-toggle:checked + .faq-question .faq-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 1.5rem;
}

.faq-toggle:checked ~ .faq-answer {
  max-height: 500px;
  padding: 0 1.5rem 1.5rem;
}

/* ===== Footer ===== */
footer {
  background-color: var(--dark-color);
  color: #fff;
  padding-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  padding-bottom: 3rem;
}

.footer-info p {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact h3,
.footer-links h3 {
  color: #fff;
  position: relative;
  padding-bottom: 0.75rem;
  margin-bottom: 1.25rem;
}

.footer-contact h3::after,
.footer-links h3::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 3px;
  background-color: var(--accent-color);
  bottom: 0;
  left: 0;
}

.footer-contact ul,
.footer-links ul {
  list-style: none;
}

.footer-contact li,
.footer-links li {
  margin-bottom: 1rem;
}

.footer-contact li a,
.footer-contact li address,
.footer-links li a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
  display: flex;
  align-items: center;
}

.footer-contact li a:hover,
.footer-links li a:hover {
  color: var(--accent-color);
}

.copyright {
  padding: 1.5rem 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright p {
  margin-bottom: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ===== Cookie Popup ===== */
.cookie-popup {
  position: fixed;
  bottom: -100%;
  left: 0;
  right: 0;
  background-color: #fff;
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  z-index: 9999;
  transition: bottom 0.5s ease-in-out;
}

.cookie-popup.show {
  bottom: 0;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.cookie-content h3 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
}

.cookie-content p {
  margin: 0;
  flex-basis: 100%;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-top: 1rem;
}

#cookie-accept {
  background-color: var(--accent-color);
  color: #fff;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: var(--border-radius);
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
}

#cookie-accept:hover {
  background-color: #e58604;
}

/* ===== Policy Pages ===== */
.policy-section {
  padding: 5rem 0;
  min-height: calc(100vh - 350px);
}

.policy-content {
  background-color: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 3rem;
  max-width: 900px;
  margin: 0 auto;
}

.policy-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.policy-last-updated {
  text-align: center;
  margin-bottom: 2.5rem;
  color: #64748b;
  font-size: 0.9rem;
}

.policy-content h2 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.policy-content ul {
  padding-left: 2rem;
  margin-bottom: 1.5rem;
  list-style-type: disc;
}

.policy-content address {
  margin-top: 1rem;
  font-style: normal;
  line-height: 1.6;
}

/* ===== Thanks Page ===== */
.thanks-section {
  min-height: calc(100vh - 300px);
  display: flex;
  align-items: center;
}

.thanks-box {
  background-color: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 3rem;
  text-align: center;
  margin: 8rem auto 5rem;
  max-width: 600px;
}

.thanks-box h1 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.thanks-image {
  width: 150px;
  height: 150px;
  margin: 2rem auto;
  border-radius: 50%;
  overflow: hidden;
}

.thanks-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== Responsive Design ===== */
@media (max-width: 992px) {
  .section-header h2 {
    font-size: 2.2rem;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  /* Burger menu */
  .menu-button {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background-color: #fff;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    padding: 7rem 2rem 2rem;
    transition: right 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
  }

  .menu-toggle:checked ~ .main-nav {
    right: 0;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0;
  }

  .main-nav li {
    border-bottom: 1px solid #f1f1f1;
  }

  .main-nav a {
    display: block;
    padding: 1rem 0;
  }

  .menu-toggle:checked ~ .menu-button .bar:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .menu-toggle:checked ~ .menu-button .bar:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle:checked ~ .menu-button .bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1.1rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .policy-content {
    padding: 2rem;
  }

  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 576px) {
  section {
    padding: 3rem 0;
  }

  .hero {
    height: 100vh;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .thanks-box {
    padding: 2rem;
    margin: 3rem auto;
  }

  .thanks-box h1 {
    font-size: 2rem;
  }
}
