:root {
  /* Tetrad color scheme */
  --primary-color: #e74c3c;
  --secondary-color: #3498db;
  --tertiary-color: #27ae60;
  --quaternary-color: #9b59b6;

  /* Darker versions for hover states */
  --primary-dark: #c0392b;
  --secondary-dark: #2980b9;
  --tertiary-dark: #219654;
  --quaternary-dark: #8e44ad;

  /* Neutral colors */
  --dark: #222222;
  --gray-dark: #444444;
  --gray: #777777;
  --gray-light: #dddddd;
  --light: #f8f8f8;
  --white: #ffffff;

  /* Typography */
  --heading-font: "Roboto", sans-serif;
  --body-font: "Lato", sans-serif;

  /* Layout */
  --container-width: 1200px;
  --section-spacing: 80px;
  --card-spacing: 30px;

  /* Border radius */
  --radius-small: 4px;
  --radius-medium: 8px;
  --radius-large: 16px;

  /* Shadows */
  --shadow-small: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 4px 8px rgba(0, 0, 0, 0.1);
  --shadow-large: 0 8px 16px rgba(0, 0, 0, 0.1);

  /* Transitions */
  --transition-fast: 0.3s ease;
  --transition-medium: 0.5s ease;
  --transition-slow: 0.8s ease;
}

/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--body-font);
  color: var(--dark);
  background-color: var(--light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--dark);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
}

p {
  margin-bottom: 1.5rem;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
}

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

a:hover {
  color: var(--primary-dark);
}

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

ul,
ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Section styling */
section {
  padding: 60px 0;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  color: var(--dark);
}

.section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: var(--primary-color);
  margin: 15px auto 0;
  border-radius: var(--radius-small);
}

/* Button styles */
.btn,
button,
input[type="submit"] {
  display: inline-block;
  padding: 12px 24px;
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: var(--radius-medium);
  font-family: var(--heading-font);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-align: center;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  box-shadow: var(--shadow-small);
}

.btn:hover,
button:hover,
input[type="submit"]:hover {
  color: #fff;
  background-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
}

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

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

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

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

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

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

/* Header and Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-small);
  z-index: 1000;
  padding: 15px 0;
  backdrop-filter: blur(10px);
  transition: all var(--transition-fast);
}

.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  font-family: var(--heading-font);
  font-weight: 900;
  font-size: 1.8rem;
  color: var(--primary-color);
  text-decoration: none;
}

.logo h1 {
  margin-bottom: 0;
  font-size: 1.8rem;
}

.main-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list li {
  margin: 0 15px;
}

.nav-list a {
  color: var(--dark);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  position: relative;
  padding: 5px 0;
}

.nav-list a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width var(--transition-fast);
}

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

.nav-list a:hover::after {
  width: 100%;
}

.burger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  height: 24px;
  width: 30px;
  cursor: pointer;
}

.burger-menu span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--dark);
  border-radius: 3px;
  transition: all var(--transition-fast);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background-color: var(--dark);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white);
  padding: 120px 0 80px;
  margin-top: 0;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.3) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: 20px;
  color: var(--white);
  font-weight: 900;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  animation-duration: 1s;
}

.hero-subtitle {
  font-size: clamp(1.25rem, 3vw, 1.8rem);
  margin-bottom: 40px;
  color: var(--white);
  font-weight: 300;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

/* About Section */
.about-section {
  background-color: var(--white);
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
  border-radius: var(--radius-large);
  overflow: hidden;
  box-shadow: var(--shadow-large);
}

.about-image img {
  border-radius: var(--radius-large);
  transition: transform var(--transition-medium);
  margin: 0 auto;
}

.about-image:hover img {
  transform: scale(1.05);
}

/* Menu Section */
.menu-section {
  background-color: var(--light);
}

.menu-description {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

.menu-slider {
  position: relative;
  padding: 20px 0;
}

.menu-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.card {
  background-color: var(--white);
  border-radius: var(--radius-medium);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  transition: transform var(--transition-fast),
    box-shadow var(--transition-fast);
  width: 100%;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-large);
}

.card-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-medium);
}

.card:hover .card-image img {
  transform: scale(1.1);
}

.card-content {
  padding: 25px;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-content h3 {
  margin-bottom: 15px;
  color: var(--dark);
}

.price {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-top: 15px;
}

.slider-controls {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  gap: 20px;
}

.slider-controls button {
  background-color: var(--white);
  color: var(--dark);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  border: 1px solid var(--gray-light);
}

.slider-controls button:hover {
  background-color: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
}

/* Methodology Section */
.methodology-section {
  background-color: var(--white);
}

.methodology-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
}

.methodology-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.methodology-image img {
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-large);
  margin: 0 auto;
}

.methodology-text {
  flex: 1;
  min-width: 300px;
}

.methodology-steps {
  margin-top: 30px;
}

.step {
  display: flex;
  margin-bottom: 30px;
  position: relative;
}

.step-number {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--primary-color);
  margin-right: 20px;
  line-height: 1;
  min-width: 40px;
  height: 40px;
  background-color: rgba(231, 76, 60, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.step h4 {
  margin-bottom: 10px;
  color: var(--dark);
}

/* Resources Section */
.resources-section {
  background-color: var(--light);
}

.resources-description {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

.resources-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.resource-card {
  background-color: var(--white);
  padding: 30px;
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-medium);
  flex: 1;
  min-width: 300px;
  max-width: 400px;
  transition: transform var(--transition-fast),
    box-shadow var(--transition-fast);
}

.resource-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-large);
}

.resource-card h3 {
  margin-bottom: 20px;
  color: var(--primary-color);
}

.resource-links {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.resource-links li {
  margin-bottom: 15px;
}

.resource-links a {
  display: inline-block;
  color: var(--secondary-color);
  font-weight: 600;
  transition: color var(--transition-fast);
  position: relative;
  padding-left: 20px;
}

.resource-links a::before {
  content: "→";
  position: absolute;
  left: 0;
  transition: transform var(--transition-fast);
}

.resource-links a:hover {
  color: var(--secondary-dark);
}

.resource-links a:hover::before {
  transform: translateX(5px);
}

/* Blog Section */
.blog-section {
  background-color: var(--white);
}

.blog-description {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

.blog-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.blog-grid .card {
  max-width: 380px;
}

.date {
  display: block;
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 10px;
}

.read-more {
  display: inline-block;
  color: var(--primary-color);
  font-weight: 600;
  margin-top: 15px;
  position: relative;
  padding-right: 25px;
  transition: color var(--transition-fast);
}

.read-more::after {
  content: "→";
  position: absolute;
  right: 0;
  transition: transform var(--transition-fast);
}

.read-more:hover {
  color: var(--primary-dark);
}

.read-more:hover::after {
  transform: translateX(5px);
}

/* Press Section */
.press-section {
  background-color: var(--light);
}

.press-description {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

.press-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.press-item {
  background-color: var(--white);
  border-radius: var(--radius-medium);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  flex: 1;
  min-width: 300px;
  max-width: 380px;
  transition: transform var(--transition-fast),
    box-shadow var(--transition-fast);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.press-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-large);
}

.press-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.press-content {
  padding: 25px;
  text-align: center;
  flex-grow: 1;
}

.press-content h3 {
  margin-bottom: 15px;
  color: var(--dark);
}

/* Community Section */
.community-section {
  background-color: var(--white);
}

.community-content {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  margin-bottom: 50px;
}

.community-text {
  flex: 1;
  min-width: 300px;
}

.community-gallery {
  flex: 1;
  min-width: 300px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.image-container {
  border-radius: var(--radius-medium);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  height: 200px;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-medium);
}

.image-container:hover img {
  transform: scale(1.1);
}

.community-cta {
  background-color: var(--light);
  padding: 40px;
  border-radius: var(--radius-large);
  text-align: center;
  box-shadow: var(--shadow-medium);
}

.community-cta h3 {
  margin-bottom: 15px;
  color: var(--dark);
}

.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  max-width: 500px;
  margin: 30px auto 0;
}

.newsletter-form input {
  flex: 1;
  min-width: 200px;
  padding: 12px 20px;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-medium);
  font-size: 1rem;
  font-family: var(--body-font);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.2);
}

/* Contact Section */
.contact-section {
  background-color: var(--light);
}

.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}

.contact-info {
  flex: 1;
  min-width: 300px;
}

.contact-info ul {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.contact-info li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.contact-info i {
  margin-right: 15px;
  color: var(--primary-color);
  font-size: 1.2rem;
}

.contact-hours {
  margin: 30px 0;
}

.contact-hours h4 {
  margin-bottom: 15px;
  color: var(--dark);
}

.contact-map {
  margin-top: 30px;
  border-radius: var(--radius-medium);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.contact-map img {
  width: 100%;
  height: auto;
}

.contact-form-container {
  flex: 1;
  min-width: 300px;
  background-color: var(--white);
  padding: 40px;
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-medium);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

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

.form-group input,
.form-group textarea {
  padding: 12px 15px;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-medium);
  font-size: 1rem;
  font-family: var(--body-font);
  transition: border-color var(--transition-fast),
    box-shadow var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.2);
}

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

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-logo {
  flex: 2;
  min-width: 300px;
}

.footer-logo h2 {
  color: var(--white);
  margin-bottom: 15px;
}

.footer-links,
.footer-legal,
.footer-social {
  flex: 1;
  min-width: 200px;
}

.footer h3 {
  color: var(--white);
  margin-bottom: 25px;
  font-size: 1.3rem;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer ul li {
  margin-bottom: 15px;
}

.footer ul a {
  color: var(--gray-light);
  transition: color var(--transition-fast);
}

.footer ul a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Success page */
.success-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
  padding: 30px;
}

.success-content {
  max-width: 600px;
  padding: 50px;
  background-color: var(--white);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-large);
}

.success-icon {
  font-size: 5rem;
  color: var(--tertiary-color);
  margin-bottom: 30px;
}

.success-title {
  color: var(--dark);
  margin-bottom: 20px;
}

.success-message {
  margin-bottom: 30px;
}

/* Privacy & Terms pages */
.legal-page {
  padding-top: 100px;
}

.legal-content {
  background-color: var(--white);
  padding: 50px;
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-medium);
}

.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 20px;
  color: var(--dark);
}

.legal-content h3 {
  margin-top: 30px;
  margin-bottom: 15px;
  color: var(--dark);
}

/* Particles Animation */
.particles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  background-color: rgba(255, 255, 255, 0.2);
  animation: float var(--transition-slow) infinite ease-in-out;
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translateY(-100px) rotate(360deg);
    opacity: 0;
  }
}

/* Responsive styles */
@media (max-width: 1024px) {
  .container {
    padding: 0 30px;
  }

  section {
    padding: 60px 0;
  }

  .methodology-steps {
    flex-direction: column;
  }
}

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

  .main-nav {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: var(--white);
    padding: 20px;
    box-shadow: var(--shadow-medium);
    transform: translateY(-150%);
    transition: transform var(--transition-fast);
    z-index: 999;
  }

  .main-nav.active {
    transform: translateY(0);
  }

  .nav-list {
    flex-direction: column;
    width: 100%;
  }

  .nav-list li {
    margin: 10px 0;
    width: 100%;
    text-align: center;
  }

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

  .contact-content,
  .about-content,
  .methodology-content {
    flex-direction: column;
  }

  .footer-content {
    gap: 30px;
  }

  .footer-logo,
  .footer-links,
  .footer-legal,
  .footer-social {
    min-width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.8rem;
  }

  .card,
  .press-item,
  .resource-card {
    min-width: 100%;
  }

  .community-gallery {
    grid-template-columns: 1fr;
  }

  .newsletter-form,
  .contact-form {
    flex-direction: column;
  }

  .newsletter-form input {
    width: 100%;
  }

  .newsletter-form button {
    width: 100%;
  }
}

/* Additional Utility Classes */
.text-center {
  text-align: center;
}

.mt-0 {
  margin-top: 0;
}
.mt-1 {
  margin-top: 0.5rem;
}
.mt-2 {
  margin-top: 1rem;
}
.mt-3 {
  margin-top: 1.5rem;
}
.mt-4 {
  margin-top: 2rem;
}
.mt-5 {
  margin-top: 3rem;
}

.mb-0 {
  margin-bottom: 0;
}
.mb-1 {
  margin-bottom: 0.5rem;
}
.mb-2 {
  margin-bottom: 1rem;
}
.mb-3 {
  margin-bottom: 1.5rem;
}
.mb-4 {
  margin-bottom: 2rem;
}
.mb-5 {
  margin-bottom: 3rem;
}

.pt-0 {
  padding-top: 0;
}
.pt-1 {
  padding-top: 0.5rem;
}
.pt-2 {
  padding-top: 1rem;
}
.pt-3 {
  padding-top: 1.5rem;
}
.pt-4 {
  padding-top: 2rem;
}
.pt-5 {
  padding-top: 3rem;
}

.pb-0 {
  padding-bottom: 0;
}
.pb-1 {
  padding-bottom: 0.5rem;
}
.pb-2 {
  padding-bottom: 1rem;
}
.pb-3 {
  padding-bottom: 1.5rem;
}
.pb-4 {
  padding-bottom: 2rem;
}
.pb-5 {
  padding-bottom: 3rem;
}

.hidden {
  display: none;
}

.visible {
  display: block;
}

/* FAQ Section */
.faq-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #ff6b6b 0%, #ffd93d 100%);
  position: relative;
  overflow: hidden;
}

.faq-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>')
    repeat;
  animation: float 20s infinite linear;
  pointer-events: none;
}

@keyframes float {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  100% {
    transform: translate(-100px, -100px) rotate(360deg);
  }
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}

.section-title h2 {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.section-title p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto;
}

.faq-container {
  display: grid;
  gap: 20px;
  position: relative;
  z-index: 2;
}

.faq-item {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.faq-question {
  padding: 25px;
  cursor: pointer;
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  border: none;
  width: 100%;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: linear-gradient(135deg, #000000 0%, #000000 100%);
}

.faq-question::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: bold;
  color: #ff6b6b;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 200px;
  overflow: hidden;
  padding: 0 25px;
  background: #fff;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 20px 25px 25px;
}

.faq-answer p {
  color: #666;
  line-height: 1.6;
}

/* Jobs Section */
.jobs-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
}

.jobs-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60"><polygon points="30,0 45,25 15,25" fill="rgba(255,255,255,0.05)"/></svg>')
    repeat;
  animation: slide 25s infinite linear;
  pointer-events: none;
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-60px);
  }
}

.jobs-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
  position: relative;
  z-index: 2;
}

.jobs-info {
  color: #fff;
}

.jobs-info h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.jobs-info p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  opacity: 0.9;
}

.benefits {
  display: grid;
  gap: 15px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  backdrop-filter: blur(5px);
}

.benefit-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #ffd93d 0%, #ff6b6b 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.application-form {
  background: rgba(255, 255, 255, 0.95);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}

.form-title {
  text-align: center;
  margin-bottom: 30px;
  color: #333;
}

.form-title h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

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

.submit-btn {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }

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

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

  .jobs-info h2 {
    font-size: 2rem;
  }

  .application-form {
    padding: 25px;
  }

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

  .faq-question {
    padding: 20px;
    font-size: 1rem;
  }

  .faq-answer {
    padding: 0 20px;
  }

  .faq-item.active .faq-answer {
    padding: 15px 20px 20px;
  }
}

@media (max-width: 480px) {
  .section-title h2 {
    font-size: 1.8rem;
  }

  .jobs-info h2 {
    font-size: 1.8rem;
  }

  .application-form {
    padding: 20px;
  }

  .faq-question {
    padding: 15px;
  }

  .benefit-item {
    padding: 12px;
  }
}
