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

.success__text {
  margin-bottom: 30px;
}

.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: #fff;
}

html {
  scroll-behavior: smooth;
}

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

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

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

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

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}

.cookie-popup.show {
  display: flex;
}

.cookie-content {
  background: white;
  padding: 40px;
  max-width: 600px;
  text-align: center;
  border-radius: 8px;
  margin: 20px;
}

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

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

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

.cookie-btn {
  padding: 15px 30px;
  border: none;
  border-radius: 5px;
  font-family: "Jockey One", sans-serif;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
}

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

.cookie-btn.customize {
  background: #666;
  color: white;
}

.cookie-btn.refuse {
  background: #666;
  color: white;
}

.cookie-btn:hover {
  opacity: 0.9;
}

/* Header */
.header {
  background: linear-gradient(135deg, #1e90ff, #4169e1);
  padding: 15px 0;
  position: relative;
  border-radius: 0 0 25px 25px;
  margin: 0 20px;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo {
  width: 40px;
  height: 40px;
}

.brand-name {
  color: white;
  font-size: 24px;
  font-weight: bold;
}

.nav-menu {
  display: flex;
  gap: 40px;
  align-items: center;
}

.nav-link {
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: opacity 0.3s;
}

.nav-link:hover {
  opacity: 0.8;
}

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

.hamburger span {
  width: 25px;
  height: 3px;
  background: white;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  padding: 80px 0;
  background: #f8f9fa;
}

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

.hero-text h1 {
  font-size: 36px;
  color: #333;
  margin-bottom: 30px;
  line-height: 1.3;
}

.hero-text p {
  color: #666;
  margin-bottom: 40px;
  font-size: 16px;
  line-height: 1.6;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #1e90ff, #4169e1);
  color: white;
  padding: 18px 40px;
  text-decoration: none;
  border-radius: 25px;
  font-size: 18px;
  font-weight: bold;
  transition: transform 0.3s;
}

.cta-button:hover {
  transform: translateY(-2px);
}

.hero-image {
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
}

/* Signup Section */
.signup-section {
  background: linear-gradient(135deg, #1a1a1a, #2c2c2c);
  background-image: url("../img/contact-bg.png");
  background-size: cover;
  background-position: center;
  padding: 80px 0;
  color: white;
  text-align: center;
}

.signup-section h2 {
  font-size: 32px;
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.signup-section p {
  margin-bottom: 50px;
  font-size: 16px;
  opacity: 0.9;
}

.signup-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-input {
  padding: 18px 25px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  backdrop-filter: blur(10px);
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.submit-button {
  background: linear-gradient(135deg, #1e90ff, #4169e1);
  color: white;
  padding: 18px 40px;
  border: none;
  border-radius: 25px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.3s;
  font-family: "Jockey One", sans-serif;
}

.submit-button:hover {
  transform: translateY(-2px);
}

/* About Section */
.about-section {
  padding: 80px 0;
  background: white;
}

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

.about-text h2 {
  font-size: 28px;
  color: #333;
  margin-bottom: 30px;
}

.about-text p {
  color: #666;
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.6;
}

.about-image {
  text-align: center;
}

.about-image img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
}

/* Technology Section */
.technology-section {
  padding: 80px 0;
  background: #f8f9fa;
  text-align: center;
}

.technology-section h2 {
  font-size: 32px;
  color: #333;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.tech-image {
  margin-bottom: 50px;
}

.tech-image img {
  max-width: 400px;
  height: auto;
  border-radius: 20px;
}

.tech-content {
  max-width: 800px;
  margin: 0 auto 50px;
  text-align: left;
}

.tech-content p {
  color: #666;
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.6;
}

/* Stats Section */
.stats-section {
  background: linear-gradient(135deg, #1e90ff, #4169e1);
  padding: 60px 0;
  color: white;
}

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

.stat-item h3 {
  font-size: 18px;
  text-align: center;
  line-height: 1.4;
}

/* Tools Section */
.tools-section {
  padding: 80px 0;
  background: white;
  text-align: center;
}

.tools-section h2 {
  font-size: 32px;
  color: #333;
  margin-bottom: 30px;
}

.tools-intro {
  color: #666;
  margin-bottom: 60px;
  font-size: 16px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  text-align: left;
}

.tool-item h3 {
  font-size: 20px;
  color: #333;
  margin-bottom: 20px;
  text-align: center;
}

.tool-item p {
  color: #666;
  line-height: 1.6;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #1e90ff, #4169e1);
  color: white;
  padding: 50px 0 30px;
  border-radius: 25px 25px 0 0;
  margin: 0 20px;
}

.contact-info {
  text-align: center;
}

.contact-info h4 {
  margin-bottom: 10px;
  margin-top: 20px;
}

.contact-info h4:first-child {
  margin-top: 0;
}

.contact-info p {
  margin-bottom: 15px;
  line-height: 1.6;
}

.contact-info a {
  color: #1a1a1a;
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 40px;
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

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

.footer-links a {
  color: white;
  text-decoration: none;
  font-size: 12px;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.footer-links a:hover {
  opacity: 1;
}

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

  .nav-menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(135deg, #1e90ff, #4169e1);
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    transition: height 0.3s;
    z-index: 1000;

  border-radius: 25px;
  }

  .nav-menu.active {
    height: 300px;
  }

  .nav-link {
    font-size: 18px;
    margin: 10px 0;
  }

  .header {
    margin: 0 10px;
  }

  .footer {
    margin: 0 10px;
  }

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

  .hero-text h1 {
    font-size: 28px;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .signup-section h2 {
    font-size: 24px;
  }

  .technology-section h2 {
    font-size: 24px;
  }

  .tools-section h2 {
    font-size: 24px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .tools-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

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

  .cookie-content {
    margin: 10px;
    padding: 20px;
  }

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

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero {
    padding: 40px 0;
  }

  .signup-section {
    padding: 40px 0;
  }

  .about-section {
    padding: 40px 0;
  }

  .technology-section {
    padding: 40px 0;
  }

  .tools-section {
    padding: 40px 0;
  }

  .stats-section {
    padding: 40px 0;
  }

  .hero-text h1 {
    font-size: 24px;
  }

  .cta-button {
    padding: 15px 30px;
    font-size: 16px;
  }

  .signup-form {
    gap: 15px;
  }

  .form-input {
    padding: 15px 20px;
  }

  .submit-button {
    padding: 15px 30px;
    font-size: 16px;
  }
}
