 html,
 body {
   margin: 0;
   padding: 0;
   font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
     "Helvetica Neue", Arial, sans-serif;
   background-color: #000000;
   color: #1c1c1c;
 }
 
 .hero-wrapper {
   width: 100%;
   background: linear-gradient(90deg, #FFD71F 0%, #FDBD2E 100%);
   border-radius: 7px 7px 0 0;
   overflow: hidden;
 }
 
 .hero-section {
   display: flex;
   width: 100%;
   height: 88vh;
   margin: 0;
   border-radius: 0;
   overflow: hidden;
 }
 
 .hero-left {
   flex: 0 0 55%;
   position: relative;
   margin-left: 20px;
   margin-top: 15px;
   height: calc(100% - 15px);
   padding: 2.5rem 4rem 3rem 4rem;
   background: #fafafa;
   color: #1c1c1c;
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   text-align: center;
   border-radius: 20px 20px 0 0;
 }
 
 .hero-left::before {
   content: "";
   position: absolute;
   left: 0;
   top: 0;
   bottom: 0;
   width: 10px;
   background-color: #ffdc03;
   border-top-left-radius: 20px;
   border-top-right-radius: 0;
   border-bottom-left-radius: 0;
 }
 
 .intro {
   font-size: 32px;
   font-weight: 900;
   margin: 0 0 0.5rem;
   color: #000000;
   opacity: 0.8;
 }
 
 .logo-container {
   display: flex;
   align-items: flex-end;
   gap: 0.5rem;
   margin-bottom: 0.8rem;
 }
 
 .logo-container img {
   height: auto;
   width: 280px;
 }
 
 .logo-container .subtitle {
   font-size: 0.65rem;
   letter-spacing: 0.3em;
   text-transform: uppercase;
   color: #f6e6c9;
   line-height: 1;
   margin-bottom: 8px;
 }
 
 .hero-left h1 {
   font-size: 72px;
   font-weight: 900;
   margin: 0 0 1.2rem;
   line-height: 68px;
   color: #000000;
   letter-spacing: -0.02em;
 }
 
 .hero-left .description {
   font-size: 18px;
   line-height: 24px;
   color: #333333;
   max-width: 520px;
   margin: 0 0 2.5rem;
   font-weight: 400;
 }
 
 .cta-button {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   width: 380px;
   height: 85px;
   font-size: 22px;
   font-weight: 700;
   text-decoration: none;
   color: #000000;
   background: linear-gradient(90deg, #FFDD02 1.62%, #FDBC2F 100%);
   border: 5px solid #FFFFFF;
   border-radius: 50px;
   box-shadow: 0px 6px 35px rgba(255, 167, 4, 0.35);
 }
 
 .cta-button:hover,
 .cta-button:focus {
   background: linear-gradient(90deg, #ffef65 1.62%, #fcd44e 100%);
   cursor: pointer;
   transform: translateY(-1px);
   box-shadow: 0px 8px 40px rgba(255, 167, 4, 0.45);
 }
 
 .hero-right {
   flex: 1;
   background-image: url("../assets/images/splash.png");
   background-size: cover;
   background-position: center right;
   background-repeat: no-repeat;
   height: 100%;
 }
 
 .site-footer {
   background-color: #000000;
   padding: 1rem 0.5rem;
 }
 
 .footer-nav {
   display: flex;
   flex-wrap: wrap;
   justify-content: center;
   gap: 0.5rem;
   font-size: 0.9rem;
   line-height: 1.2;
 }
 
 .footer-nav a {
   color: #ffffff;
   text-decoration: none;
   position: relative;
   padding: 0 0.5rem;
 }
 
 .footer-nav a::after {
   content: "";
   position: absolute;
   right: -0.3rem;
   top: 50%;
   transform: translateY(-50%);
   width: 1px;
   height: 0.8em;
   background-color: #777777;
 }
 
 .footer-nav a:last-child::after {
   display: none;
 }
 
 .footer-nav a:hover,
 .footer-nav a:focus {
   text-decoration: underline;
   outline: none;
 }
 
.privacy-wrapper {
  width: 100%;
  background: linear-gradient(90deg, #FFD71F 0%, #FDBD2E 100%);
  border-radius: 7px 7px 0 0;
  overflow: hidden;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

.privacy-wrapper .site-footer {
  flex-shrink: 0;
}

.privacy-logo-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 0;
  background: linear-gradient(90deg, #FFD71F 0%, #FDBD2E 100%);
}

.privacy-logo {
  height: auto;
  width: 200px;
  max-width: 100%;
}

.privacy-section {
  display: flex;
  width: 100%;
  flex: 1;
  margin: 0;
  border-radius: 0;
  overflow: hidden;
}

.privacy-content {
  flex: 1;
  background: #fafafa;
  margin: 10px 20px 10px 20px;
  padding: 2rem 3rem;
  border-radius: 20px 20px 0 0;
  position: relative;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.privacy-content::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 10px;
  background-color: #ffdc03;
  border-top-left-radius: 20px;
  border-top-right-radius: 0;
  border-bottom-left-radius: 0;
}

.privacy-header {
  text-align: left;
  margin-bottom: 2rem;
  padding-bottom: 0;
}

.privacy-header h1 {
  font-size: 40px;
  font-weight: 800;
  color: #000000;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}

.effective-date {
  font-size: 14px;
  color: #757575;
  margin: 0;
  font-weight: 400;
}

.privacy-body {
  max-width: 100%;
  margin: 0;
}

.privacy-section-content h2 {
  font-size: 24px;
  font-weight: 400;
  color: #F0A100;
  margin: 2rem 0 1rem;
  padding-top: 0;
}

.privacy-section-content h2:first-of-type {
  border-top: none;
  margin-top: 0;
}

.privacy-section-content h3 {
  font-size: 24px;
  font-weight: 400;
  color: #F0A100;
  margin: 1.5rem 0 0.8rem;
}

.privacy-section-content p {
  font-size: 14px;
  line-height: 1.5;
  color: #333333;
  margin: 0 0 1rem;
}

.privacy-section-content ul {
  margin: 0 0 1.5rem;
  padding-left: 2rem;
}

.privacy-section-content li {
  font-size: 14px;
  line-height: 1.5;
  color: #333333;
  margin-bottom: 0.3rem;
}

.privacy-section-content strong {
  font-weight: 700;
  color: #000000;
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.cookie-table th {
  background: #f8f8f8;
  padding: 1rem;
  text-align: left;
  font-weight: 700;
  color: #000000;
  border-bottom: 2px solid #e0e0e0;
}

.cookie-table td {
  padding: 1rem;
  border-bottom: 1px solid #e0e0e0;
  vertical-align: top;
}

.cookie-table tr:last-child td {
  border-bottom: none;
}

.faq-divider {
  width: 100%;
  height: 1px;
  background-color: #e0e0e0;
  margin: 1.5rem 0 2rem 0;
}

.privacy-section-content a {
  color: #F0A100;
  text-decoration: none;
  font-weight: 500;
}

.privacy-section-content a:hover {
  text-decoration: underline;
  color: #d18a00;
}

.contact-wrapper {
  width: 100%;
  background: linear-gradient(90deg, #FFD71F 0%, #FDBD2E 100%);
  border-radius: 7px 7px 0 0;
  overflow: hidden;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

.contact-wrapper .site-footer {
  flex-shrink: 0;
}

.contact-logo-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 0;
  background: linear-gradient(90deg, #FFD71F 0%, #FDBD2E 100%);
}

.contact-logo {
  height: auto;
  width: 200px;
  max-width: 100%;
}

.contact-section {
  display: flex;
  width: 100%;
  flex: 1;
  margin: 0;
  border-radius: 0;
  overflow: hidden;
}

.contact-content {
  flex: 1;
  background: #fafafa;
  margin: 20px;
  padding: 3rem;
  border-radius: 20px 20px 0 0;
  position: relative;
  overflow-y: auto;
  display: flex;
  flex-direction: row;
  gap: 3rem;
}

.contact-content::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 10px;
  background-color: #ffdc03;
  border-top-left-radius: 20px;
  border-top-right-radius: 0;
  border-bottom-left-radius: 0;
}

.contact-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem 0;
}

.contact-illustration {
  margin-bottom: 2rem;
}

.contact-image {
  width: 200px;
  height: auto;
  max-width: 100%;
}

.contact-text h1 {
  font-size: 48px;
  font-weight: 800;
  color: #000000;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.contact-text p {
  font-size: 18px;
  line-height: 1.5;
  color: #333333;
  margin: 0;
  max-width: 400px;
}

.contact-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 16px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  padding: 1rem;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 16px;
  background-color: #f8f8f8;
  color: #333333;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #F0A100;
  background-color: #ffffff;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #999999;
}

.submit-button {
  align-self: flex-end;
  background-color: #000000;
  color: #ffffff;
  border: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: fit-content;
}

.submit-button:hover {
  background-color: #333333;
}

.submit-button:active {
  transform: translateY(1px);
}

.submit-button:disabled {
  background-color: #666666;
  cursor: not-allowed;
  opacity: 0.7;
}

.submit-button:disabled:hover {
  background-color: #666666;
}

.form-messages {
  margin-top: 1rem;
}

.message {
  padding: 1rem;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.message-success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.message-error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.message-info {
  background-color: #d1ecf1;
  color: #0c5460;
  border: 1px solid #bee5eb;
}

@media (max-width: 600px) {
  .footer-nav {
    gap: 0.25rem;
    font-size: 0.8rem;
  }
  .footer-nav a {
    padding: 0 0.25rem;
  }
  .footer-nav a::after {
    right: -0.2rem;
    height: 0.6em;
  }
  
  .privacy-content {
    margin: 5px 10px 5px 10px;
    padding: 1.5rem 1rem;
  }
  
  .privacy-logo {
    width: 150px;
  }
  
  .privacy-logo-section {
    padding: 1rem 0;
  }
  
  .privacy-header h1 {
    font-size: 32px;
  }
  
  .privacy-section-content h2 {
    font-size: 20px;
  }
  
  .privacy-section-content h3 {
    font-size: 20px;
  }
  
  .cookie-table {
    font-size: 14px;
  }
  
  .cookie-table th,
  .cookie-table td {
    padding: 0.75rem;
  }
  
  .contact-content {
    flex-direction: column;
    gap: 2rem;
    padding: 2rem 1rem;
    margin: 10px;
  }
  
  .contact-left {
    padding: 1rem 0;
  }
  
  .contact-image {
    width: 150px;
  }
  
  .contact-text h1 {
    font-size: 36px;
  }
  
  .contact-text p {
    font-size: 16px;
  }
  
  .contact-form {
    gap: 1rem;
  }
  
  .form-group input,
  .form-group textarea {
    padding: 0.75rem;
    font-size: 14px;
  }
  
  .submit-button {
    padding: 0.75rem 1.5rem;
    font-size: 14px;
  }
}