.policy,
.success,
.contact-section {
  padding-block: 130px 60px;
  min-height: 92vh;
}

.policy__title,
.success__title {
  font-weight: 700;
  font-size: 40px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;

  margin-bottom: 30px;
}

.policy__text {
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  letter-spacing: 0%;
}

.policy__text h2,
.policy__text p,
.policy__text ul {
  margin-bottom: 14px;
}

.policy__link {
  color: #000;
}

html {
  scroll-behavior: smooth;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Antonio", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

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

/* Buttons */
.btn-primary {
  background-color: #ff9500;
  color: white;
  padding: 15px 30px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: "Antonio", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background-color 0.3s ease;
  display: inline-block;
}

.btn-primary:hover {
  background-color: #e68600;
}

.btn-secondary {
  background-color: #ff9500;
  color: white;
  padding: 12px 25px;
  text-decoration: none;
  font-family: "Antonio", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background-color 0.3s ease;
  display: inline-block;
}

.btn-secondary:hover {
  background-color: #e68600;
}

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 20px;
}

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

.cookie-content {
  background: #f5f5f5;
  padding: 40px;
  max-width: 500px;
  text-align: center;
  border: 2px solid #ccc;
}

.cookie-content h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #333;
}

.cookie-content p {
  margin-bottom: 30px;
  line-height: 1.6;
  color: #333;
}

.cookie-content a {
  color: #ff9500;
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.btn-cookie {
  padding: 15px 30px;
  border: none;
  cursor: pointer;
  font-family: "Antonio", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.btn-cookie.accept {
  background-color: #ff9500;
  color: white;
}

.btn-cookie.accept:hover {
  background-color: #e68600;
}

.btn-cookie.refuse {
  background-color: transparent;
  color: #333;
  border: 1px solid #ccc;
}

.btn-cookie.refuse:hover {
  background-color: #f0f0f0;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: white;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-brand a {
  font-size: 24px;
  font-weight: 700;
  text-decoration: none;
  color: #333;
  letter-spacing: 2px;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #ff9500;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: #333;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)),
    url("../img/hero-bg.webp");
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  align-items: center;
  color: white;
  margin-top: 80px;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-text h1 {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
  line-height: 1.6;
}

/* Strategic Support Section */
.strategic-support {
  background-color: #ff9500;
  padding: 80px 0;
  color: white;
}

.support-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: center;
}

.support-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.support-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.support-text p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.support-text h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-top: 2rem;
}

/* Why Clients Section */
.why-clients {
  padding: 80px 0;
  background-color: #f8f8f8;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #333;
}

.section-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #333;
}

.section-description {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
  color: #666;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.benefit-card {
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.benefit-image {
  margin-bottom: 20px;
}

.benefit-image img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.benefit-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #333;
}

.benefit-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
}

/* Impact Section */
.impact-section {
  background-color: #2a2a2a;
  color: white;
  padding: 80px 0;
}

.impact-section h2 {
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 60px;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.impact-card {
  padding: 30px;
}

.impact-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: white;
}

.impact-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: #ccc;
}

/* Consulting Tracks Section */
.consulting-tracks {
  padding: 80px 0;
  background-color: #f8f8f8;
}

.consulting-tracks h2 {
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 60px;
  color: #333;
}

.tracks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.track-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.track-image {
  width: 110px;
  height: 110px;
  overflow: hidden;
}

.track-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.track-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 20px 20px 15px;
  color: #333;
}

.track-card p {
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 20px 20px;
  color: #666;
}

.track-card .btn-secondary {
  margin: 0 20px 30px;
}

/* Contact Form Section */
.contact-form {
  background-color: #2a2a2a;
  color: white;
  padding: 80px 0;
}

.form-header {
  text-align: center;
  margin-bottom: 40px;
}

.form-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
}

.contact-form-element {
  max-width: 800px;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  position: relative;
}

.form-group.full-width {
  margin-bottom: 30px;
}

.form-group input {
  width: 100%;
  padding: 15px;
  background-color: white;
  border: none;
  font-family: "Antonio", sans-serif;
  font-size: 1rem;
  color: #333;
}

.form-group input::placeholder {
  color: #999;
}

.contact-form-element .btn-primary {
  width: 100%;
  padding: 20px;
  font-size: 1.1rem;
}

/* Footer */
.footer {
  background-color: #1a1a1a;
  color: white;
  padding: 40px 0;
}

.footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-brand h3 {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 2px;
}

.footer-links {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ff9500;
}

.footer-copyright p {
  font-size: 0.9rem;
  color: #999;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 80px;
    flex-direction: column;
    background-color: white;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 20px 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-list {
    flex-direction: column;
    gap: 1rem;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

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

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

  .support-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .support-text h2 {
    font-size: 2rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1.2rem;
  }

  .impact-section h2 {
    font-size: 2rem;
  }

  .consulting-tracks h2 {
    font-size: 2rem;
  }

  .form-header h2 {
    font-size: 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer .container {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  .cookie-content {
    padding: 30px 20px;
  }

  .cookie-content h3 {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 1rem;
  }

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

  .tracks-grid {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .impact-grid {
    grid-template-columns: 1fr;
  }

  .footer-links {
    flex-direction: column;
    gap: 15px;
  }
}
