.policy,
.success {
  padding-block: 90px 60px !important;
  min-height: 92vh;
}

@media (max-width: 768px) {
  .policy {
    padding-block: 100px 60px !important;
  }
}

.success__text {
  margin-bottom: 27px;
}

/* .success__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 600px;
  margin: 0 auto;
} */

.success__text ul {
  padding-left: 20px;
}

.success__btns {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.policy__title,
.success__title {
  font-weight: 700;
  font-size: 34px;
  line-height: 110%;
  letter-spacing: 0%;
  vertical-align: middle;
  margin-bottom: 26px;
  color: #000000;
}

.policy__title {
  color: #000000;
}

.policy__text h2 {
  text-align: left;

  font-size: 21px;
}

.policy__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  letter-spacing: 0%;
  color: #000000;
}

.policy__text h2,
.policy__text p {
  text-align: left;
  color: #000000;
}

.policy__text ul {
  padding-left: 20px;
}

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

.policy__link {
  color: #fff;
}

h1,
h2,
h3,
h4 {
  word-break: break-word;
}

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;
}

:root {
  --primary-color: #4169e1;
  --secondary-color: #2c3e50;
  --dark-bg: #1a2332;
  --light-bg: #f8f9fa;
  --text-dark: #2c3e50;
  --text-light: #6c757d;
  --white: #ffffff;
  --accent-color: #3b5998;
  --transition: all 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "ABeeZee", sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

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

/* Cookie Popup Styles */
.cookie-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

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

.cookie-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.15);
}

.cookie-content {
  position: relative;
  background: var(--white);
  padding: 40px;
  border-radius: 12px;
  max-width: 500px;
  margin: 0 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  z-index: 10001;
}

.cookie-content h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.cookie-content p {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 25px;
  line-height: 1.6;
}

.cookie-content a {
  color: var(--primary-color);
  text-decoration: underline;
}

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

.btn-accept,
.btn-decline {
  flex: 1;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-family: "ABeeZee", sans-serif;
  cursor: pointer;
  transition: var(--transition);
  min-width: 120px;
}

.btn-accept {
  background-color: var(--primary-color);
  color: var(--white);
}

.btn-accept:hover {
  background-color: #3557c7;
}

.btn-decline {
  background-color: var(--light-bg);
  color: var(--text-dark);
  border: 1px solid #ddd;
}

.btn-decline:hover {
  background-color: #e8e9ea;
}

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

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: var(--text-dark);
}

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

.nav-menu a {
  font-size: 16px;
  color: var(--text-dark);
  transition: var(--transition);
}

.nav-menu a:hover {
  color: var(--primary-color);
}

.btn-primary-nav {
  background-color: var(--dark-bg);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 6px;
}

.btn-primary-nav:hover {
  background-color: var(--secondary-color);
}

.btn-secondary-nav {
  color: var(--text-dark) !important;
  padding: 10px 20px;
  border: 1px solid var(--text-dark);
  border-radius: 6px;
}

.btn-secondary-nav:hover {
  background-color: var(--text-dark);
  color: var(--white) !important;
}

.burger-menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.burger-menu span {
  width: 25px;
  height: 3px;
  background-color: var(--text-dark);
  transition: var(--transition);
}

.burger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.burger-menu.active span:nth-child(2) {
  opacity: 0;
}

.burger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("../img/hero-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: var(--white);
  max-width: 800px;
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 30px;
  line-height: 1.6;
}

.btn-primary {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background-color: #3557c7;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(65, 105, 225, 0.3);
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 36px;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.section-header p {
  font-size: 18px;
  color: var(--text-light);
}

/* Bikes Section */
.bikes-section {
  padding: 80px 0;
  background-color: var(--light-bg);
}

.bikes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.bike-card {
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.bike-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.bike-image {
  height: 250px;
  overflow: hidden;
}

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

.bike-info {
  padding: 25px;
}

.bike-info h3 {
  font-size: 24px;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.bike-info > p {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 15px;
}

.bike-features {
  margin-bottom: 20px;
}

.bike-features li {
  position: relative;
  padding-left: 25px;
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 8px;
}

.bike-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.btn-secondary {
  display: inline-block;
  background-color: var(--dark-bg);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 6px;
  font-size: 14px;
  transition: var(--transition);
}

.btn-secondary:hover {
  background-color: var(--secondary-color);
}

/* Why Choose Us Section */
.why-section {
  padding: 80px 0;
  background-color: var(--white);
}

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

.why-features {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.feature-item {
  display: flex;
  gap: 20px;
}

.feature-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.feature-text h3 {
  font-size: 20px;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.feature-text p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.6;
}

.testimonial {
  background-color: var(--light-bg);
  padding: 40px;
  border-radius: 12px;
}

.testimonial-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
}

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

blockquote {
  text-align: center;
}

blockquote p {
  font-size: 16px;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

cite {
  display: block;
  font-style: normal;
}

cite strong {
  font-size: 16px;
  color: var(--text-dark);
  display: block;
  margin-bottom: 5px;
}

cite span {
  font-size: 14px;
  color: var(--text-light);
}

.trusted-section {
  margin-top: 60px;
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid #e0e0e0;
}

.trusted-section p {
  font-size: 12px;
  color: var(--text-light);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Expert Section */
.expert-section {
  padding: 80px 0;
  background-color: var(--light-bg);
}

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

.expert-card {
  text-align: center;
  padding: 30px;
}

.expert-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.expert-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.expert-card h3 {
  font-size: 22px;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.expert-card p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.6;
}

/* Contact Section */
.contact-section {
  padding: 80px 0;
  background-color: var(--white);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

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

.form-group label {
  font-size: 14px;
  color: var(--text-dark);
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 15px;
  font-family: "ABeeZee", sans-serif;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(65, 105, 225, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form .btn-primary {
  width: 100%;
  margin-top: 10px;
}

/* Footer */
.footer {
  background-color: var(--dark-bg);
  color: var(--white);
  padding: 60px 0 30px;
}

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

.footer-column h3 {
  font-size: 20px;
  margin-bottom: 20px;
}

.footer-column address {
  font-style: normal;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
}

.footer-column address a {
  color: rgba(255, 255, 255, 0.8);
}

.footer-column address a:hover {
  color: var(--white);
}

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

.footer-links a {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 5px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.social-links a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

.social-links img {
  width: 20px;
  height: 20px;
}

.social-post {
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-legal {
  display: flex;
  gap: 10px;
  align-items: center;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.6);
}

.footer-legal a:hover {
  color: var(--white);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 40px;
  }

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

@media (max-width: 768px) {
  .burger-menu {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 40px 20px;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  }

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

  .nav-menu li {
    width: 100%;
    text-align: center;
  }

  .nav-menu a {
    display: block;
    padding: 15px;
  }

  .hero {
    height: 500px;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .section-header h2 {
    font-size: 28px;
  }

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

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

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

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

  .cookie-buttons {
    flex-direction: column;
  }

  .btn-accept,
  .btn-decline {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero {
    height: 450px;
  }

  .hero-content h1 {
    font-size: 26px;
  }

  .hero-content p {
    font-size: 14px;
  }

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

  .bikes-section,
  .why-section,
  .expert-section,
  .contact-section {
    padding: 50px 0;
  }

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