/* Global Styles */
:root {
  --primary: #5138ED;
  --secondary: #FF5C35;
  --accent: #12E2B4;
  --bg-light: #F8F9FD;
  --bg-dark: #1A1A2E;
  --text-primary: #232340;
  --text-secondary: #5E5E89;
  --alert: #FF3A5E;
  --success: #00C896;
  --transition: all 0.3s ease;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 10px 30px rgba(81, 56, 237, 0.15);
  --border-radius: 12px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Space Grotesk', sans-serif;
  color: var(--text-primary);
  background-color: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--text-primary);
  position: relative;
  display: inline-block;
}

h2::after {
  content: '';
  position: absolute;
  width: 40%;
  height: 4px;
  background: var(--secondary);
  bottom: -10px;
  left: 0;
  border-radius: 4px;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--text-primary);
}

h4 {
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  color: var(--text-primary);
}

p, li, a {
  font-size: clamp(1rem, 1.2vw, 1.125rem);
}

p {
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
}

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

a:hover {
  color: var(--secondary);
}

strong {
  font-weight: 700;
  color: var(--text-primary);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: var(--border-radius);
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  transition: width 0.3s ease;
  z-index: -1;
}

.btn:hover::before {
  width: 100%;
}

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

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

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

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

.btn-lg {
  padding: 16px 36px;
  font-size: 18px;
}

.btn-sm {
  padding: 10px 24px;
  font-size: 14px;
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
  padding: 20px 0;
  background-color: rgba(248, 249, 253, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.header.scrolled {
  padding: 12px 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

.logo {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 24px;
  color: var(--text-primary);
}

.logo img {
  height: 50px;
  margin-right: 10px;
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
}

.nav-link {
  margin: 0 18px;
  font-weight: 500;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.hamburger {
  display: none;
  cursor: pointer;
  width: 30px;
  height: 21px;
  position: relative;
  z-index: 1001;
}

.hamburger span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: var(--text-primary);
  border-radius: 3px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: var(--transition);
}

.hamburger span:nth-child(1) {
  top: 0px;
}

.hamburger span:nth-child(2),
.hamburger span:nth-child(3) {
  top: 9px;
}

.hamburger span:nth-child(4) {
  top: 18px;
}

.hamburger.open span:nth-child(1),
.hamburger.open span:nth-child(4) {
  top: 9px;
  width: 0%;
  left: 50%;
}

.hamburger.open span:nth-child(2) {
  transform: rotate(45deg);
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg);
}

/* Hero Section */
.hero {
  padding-top: 140px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(81, 56, 237, 0.1) 0%, rgba(81, 56, 237, 0) 70%);
  z-index: -1;
  border-radius: 50%;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-text {
  flex: 1;
  max-width: 600px;
}

.hero-text p {
  font-size: clamp(1.1rem, 1.5vw, 1.25rem);
  margin-bottom: 2rem;
}

.hero-image {
  flex: 1;
  max-width: 500px;
  position: relative;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  transform: perspective(1000px) rotateY(-5deg);
}

.hero-image::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--accent);
  border-radius: var(--border-radius);
  top: 20px;
  left: 20px;
  z-index: -1;
}

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

/* Services Section */
.services {
  padding: 100px 0;
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 92, 53, 0.1) 0%, rgba(255, 92, 53, 0) 70%);
  z-index: -1;
  border-radius: 50%;
}

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

.section-header h2 {
  display: inline-block;
}

.section-header p {
  max-width: 700px;
  margin: 20px auto;
  font-size: 18px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 40px 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--primary);
  transition: var(--transition);
  z-index: -1;
}

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

.service-card:hover::before {
  width: 100%;
  background: linear-gradient(45deg, var(--primary), transparent);
  opacity: 0.05;
}

.service-icon {
  font-size: 50px;
  color: var(--primary);
  margin-bottom: 20px;
}

.service-card h3 {
  margin-bottom: 15px;
  font-size: 22px;
}

.service-card p {
  margin-bottom: 20px;
}

.service-link {
  font-weight: 500;
  display: inline-flex;
  align-items: center;
}

.service-link i {
  margin-left: 8px;
  transition: var(--transition);
}

.service-link:hover i {
  transform: translateX(5px);
}

/* Testimonials Section */
.testimonials {
  padding: 100px 0;
  background-color: var(--bg-dark);
  color: white;
  position: relative;
}

.testimonials::after {
  content: '';
  position: absolute;
  top: 50px;
  right: 50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(18, 226, 180, 0.1) 0%, rgba(18, 226, 180, 0) 70%);
  z-index: 0;
  border-radius: 50%;
}

.testimonials .section-header h2,
.testimonials .section-header p {
  color: white;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 40px;
  position: relative;
  z-index: 1;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius);
  padding: 40px 30px;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.testimonial-text {
  margin-bottom: 30px;
  font-size: 18px;
  line-height: 1.7;
  position: relative;
}

.testimonial-text::before {
  content: '"';
  font-size: 60px;
  position: absolute;
  top: -20px;
  left: -10px;
  color: var(--accent);
  opacity: 0.3;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 15px;
  object-fit: cover;
  border: 2px solid var(--accent);
}

.testimonial-info h4 {
  margin-bottom: 5px;
  color: white;
}

.testimonial-info p {
  color: var(--accent);
  margin-bottom: 0;
  font-size: 14px;
}

/* Team Section */
.team {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.team::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(81, 56, 237, 0.05) 0%, rgba(81, 56, 237, 0) 70%);
  z-index: -1;
  border-radius: 50%;
}

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

.team-member {
  background: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

.team-image {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.team-info {
  padding: 25px;
  text-align: center;
}

.team-position {
  color: var(--secondary);
  font-weight: 500;
  margin-bottom: 10px;
  font-size: 14px;
}

.team-bio {
  margin-top: 15px;
  font-size: 15px;
}

/* Contact Form */
.contact-form-section {
  padding: 100px 0;
  background-color: white;
  position: relative;
}

.contact-form-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 92, 53, 0.05) 0%, rgba(255, 92, 53, 0) 70%);
  z-index: 0;
  border-radius: 50%;
}

.contact-form-container {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 50px;
  position: relative;
  z-index: 1;
}

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

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

.form-group.full-width {
  grid-column: span 2;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--text-primary);
}

.form-control {
  width: 100%;
  padding: 15px;
  border: 1px solid #e0e0e0;
  border-radius: var(--border-radius);
  font-family: inherit;
  font-size: 16px;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(81, 56, 237, 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 150px;
}

.form-check {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.form-check-input {
  margin-right: 10px;
  margin-top: 4px;
}

.form-check-label {
  font-size: 14px;
  color: var(--text-secondary);
}

.submit-btn {
  width: 100%;
  padding: 16px;
  font-size: 18px;
  font-weight: 500;
}

/* FAQ Section */
.faq-section {
  padding: 100px 0;
  background-color: var(--bg-light);
}

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

.accordion-item {
  background: white;
  border-radius: var(--border-radius);
  margin-bottom: 20px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.accordion-header {
  padding: 20px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}

.accordion-header:hover {
  background-color: rgba(81, 56, 237, 0.05);
}

.accordion-header h3 {
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 500;
}

.accordion-icon {
  width: 20px;
  height: 20px;
  position: relative;
  transition: var(--transition);
}

.accordion-icon::before,
.accordion-icon::after {
  content: '';
  position: absolute;
  background-color: var(--primary);
  transition: var(--transition);
}

.accordion-icon::before {
  width: 100%;
  height: 2px;
  top: 50%;
  transform: translateY(-50%);
}

.accordion-icon::after {
  width: 2px;
  height: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.accordion-item.active .accordion-icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-content {
  padding: 0 30px 30px;
}

.accordion-item.active .accordion-header {
  border-bottom-color: #e0e0e0;
}

.accordion-item.active .accordion-body {
  max-height: 1000px;
}

/* News & Updates Section */
.news-section {
  padding: 100px 0;
  background-color: white;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.news-card {
  background: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

.news-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.news-content {
  padding: 25px;
}

.news-date {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 10px;
  display: inline-block;
}

.news-title {
  font-size: 20px;
  margin-bottom: 15px;
}

.news-excerpt {
  font-size: 15px;
  margin-bottom: 20px;
}

.read-more {
  font-weight: 500;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
}

.read-more i {
  margin-left: 8px;
  transition: var(--transition);
}

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

/* Footer */
.footer {
  background-color: var(--bg-dark);
  color: white;
  padding: 80px 0 40px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
}

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

.footer-logo {
  margin-bottom: 20px;
  display: inline-block;
}

.footer-logo img {
  height: 50px;
}

.footer-about p {
  color: #a0a0c0;
  margin-bottom: 25px;
}

.footer-heading {
  font-size: 20px;
  margin-bottom: 25px;
  color: white;
  position: relative;
  display: inline-block;
}

.footer-heading::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 3px;
  background: var(--accent);
  bottom: -10px;
  left: 0;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #a0a0c0;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
}

.footer-links a:hover {
  color: white;
}

.footer-links a i {
  margin-right: 10px;
  font-size: 14px;
  color: var(--accent);
}

.footer-contact li {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
}

.footer-contact i {
  margin-right: 15px;
  color: var(--accent);
  font-size: 18px;
  margin-top: 3px;
}

.footer-contact span {
  color: #a0a0c0;
}

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

.footer-copyright {
  color: #a0a0c0;
  font-size: 14px;
}

.footer-social {
  display: flex;
  gap: 15px;
}

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

.social-icon:hover {
  background: var(--primary);
  transform: translateY(-5px);
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--bg-dark);
  color: white;
  padding: 20px;
  z-index: 9999;
  display: none;
  box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.2);
}

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

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

.cookie-text h3 {
  margin-bottom: 10px;
  color: white;
}

.cookie-text p {
  color: #a0a0c0;
  margin-bottom: 0;
  font-size: 15px;
}

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

.cookie-settings-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 10000;
  display: none;
  overflow-y: auto;
}

.cookie-settings-content {
  background-color: white;
  max-width: 800px;
  margin: 50px auto;
  padding: 40px;
  border-radius: var(--border-radius);
  color: var(--text-primary);
}

.cookie-settings-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.cookie-settings-header h2 {
  margin-bottom: 0;
}

.cookie-close {
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-primary);
}

.cookie-category {
  margin-bottom: 30px;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 20px;
}

.cookie-category:last-child {
  border-bottom: none;
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.cookie-category-title {
  font-size: 18px;
  font-weight: 500;
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 30px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: var(--transition);
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: var(--transition);
  border-radius: 50%;
}

input:checked + .slider {
  background-color: var(--success);
}

input:focus + .slider {
  box-shadow: 0 0 1px var(--success);
}

input:checked + .slider:before {
  transform: translateX(30px);
}

.cookie-category-description {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 0;
}

.cookie-settings-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}

/* Thank You Page */
.thank-you {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  text-align: center;
  padding: 50px 20px;
}

.thank-you-icon {
  font-size: 80px;
  color: var(--success);
  margin-bottom: 30px;
}

.thank-you h1 {
  margin-bottom: 20px;
}

.thank-you p {
  max-width: 600px;
  margin: 0 auto 30px;
}

/* Diagnosis Page */
.diagnosis-hero {
  padding: 180px 0 100px;
  background-color: var(--bg-dark);
  color: white;
  position: relative;
  overflow: hidden;
}

.diagnosis-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(81, 56, 237, 0.2) 0%, rgba(81, 56, 237, 0) 70%);
  z-index: 0;
  border-radius: 50%;
}

.diagnosis-hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.diagnosis-hero h1 {
  color: white;
  margin-bottom: 30px;
}

.diagnosis-hero p {
  color: #a0a0c0;
  font-size: 18px;
  margin-bottom: 40px;
}

.diagnosis-process {
  padding: 100px 0;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.process-step {
  background: white;
  border-radius: var(--border-radius);
  padding: 40px 30px;
  box-shadow: var(--shadow);
  position: relative;
}

.step-number {
  position: absolute;
  top: -20px;
  left: 30px;
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.process-step h3 {
  margin-bottom: 20px;
  margin-top: 10px;
}

.diagnosis-benefits {
  padding: 100px 0;
  background-color: var(--bg-light);
}

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

.benefit-card {
  padding: 30px;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

.benefit-icon {
  font-size: 40px;
  color: var(--primary);
  margin-bottom: 20px;
}

/* Team Page */
.team-hero {
  padding: 180px 0 100px;
  background-color: var(--bg-dark);
  color: white;
  position: relative;
  overflow: hidden;
}

.team-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 92, 53, 0.2) 0%, rgba(255, 92, 53, 0) 70%);
  z-index: 0;
  border-radius: 50%;
}

.team-hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin-left: auto;
}

.team-hero h1 {
  color: white;
  margin-bottom: 30px;
}

.team-hero p {
  color: #a0a0c0;
  font-size: 18px;
  margin-bottom: 40px;
}

.team-members {
  padding: 100px 0;
}

.approach-section {
  padding: 100px 0;
  background-color: var(--bg-light);
}

.approach-content {
  display: flex;
  gap: 60px;
  align-items: center;
}

.approach-text {
  flex: 1;
}

.approach-image {
  flex: 1;
}

.approach-image img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.pricing-section {
  padding: 100px 0;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 50px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.pricing-table th,
.pricing-table td {
  padding: 20px;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
}

.pricing-table thead th {
  background-color: var(--primary);
  color: white;
  font-weight: 500;
}

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

.pricing-table tbody tr:nth-child(even) {
  background-color: #f8f8f8;
}

.pricing-table tbody tr:hover {
  background-color: rgba(81, 56, 237, 0.05);
}

.pricing-table .price {
  font-weight: 700;
  color: var(--primary);
}

/* FAQ Page */
.faq-hero {
  padding: 180px 0 100px;
  background-color: var(--bg-dark);
  color: white;
  position: relative;
  overflow: hidden;
}

.faq-hero::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(18, 226, 180, 0.2) 0%, rgba(18, 226, 180, 0) 70%);
  z-index: 0;
  border-radius: 50%;
}

.faq-hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.faq-hero h1 {
  color: white;
  margin-bottom: 30px;
}

.faq-hero p {
  color: #a0a0c0;
  font-size: 18px;
  margin-bottom: 40px;
}

.faq-content {
  padding: 100px 0;
}

.faq-categories {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.faq-category {
  padding: 12px 24px;
  border-radius: 30px;
  background-color: white;
  color: var(--text-primary);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.faq-category.active,
.faq-category:hover {
  background-color: var(--primary);
  color: white;
}

.tips-section {
  padding: 100px 0;
  background-color: var(--bg-light);
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.tip-card {
  background: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

.tip-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.tip-content {
  padding: 25px;
}

.tip-title {
  font-size: 20px;
  margin-bottom: 15px;
}

/* Contact Page */
.contact-hero {
  padding: 180px 0 100px;
  background-color: var(--bg-dark);
  color: white;
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 92, 53, 0.2) 0%, rgba(255, 92, 53, 0) 70%);
  z-index: 0;
  border-radius: 50%;
}

.contact-hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.contact-hero h1 {
  color: white;
  margin-bottom: 30px;
}

.contact-hero p {
  color: #a0a0c0;
  font-size: 18px;
  margin-bottom: 40px;
}

.contact-content {
  padding: 100px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info {
  background: white;
  border-radius: var(--border-radius);
  padding: 40px;
  box-shadow: var(--shadow);
}

.contact-info-item {
  margin-bottom: 30px;
  display: flex;
  align-items: flex-start;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  background: rgba(81, 56, 237, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  color: var(--primary);
  font-size: 20px;
}

.contact-info-content h4 {
  margin-bottom: 5px;
}

.contact-info-content p {
  margin-bottom: 0;
  color: var(--text-secondary);
}

.contact-map {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: none;
}

/* Policy Pages */
.policy-page {
  padding: 180px 0 100px;
}

.policy-content {
  max-width: 800px;
  margin: 0 auto;
}

.policy-content h2 {
  margin-top: 40px;
  margin-bottom: 20px;
}

.policy-content h3 {
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 20px;
}

.policy-content p {
  margin-bottom: 20px;
}

.policy-content ul,
.policy-content ol {
  margin-bottom: 20px;
  padding-left: 20px;
}

.policy-content li {
  margin-bottom: 10px;
}

.policy-date {
  margin-top: 50px;
  font-style: italic;
  color: var(--text-secondary);
}

.policy-toc {
  background: #f8f8f8;
  padding: 20px 30px;
  border-radius: var(--border-radius);
  margin-bottom: 40px;
}

.policy-toc h3 {
  margin-top: 0;
}

.policy-toc ul {
  list-style: none;
  padding-left: 0;
}

.policy-toc ul li {
  margin-bottom: 8px;
}

.policy-toc ul li a {
  display: inline-block;
  padding: 4px 0;
}

/* Utility Classes */
.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 10px !important; }
.mt-2 { margin-top: 20px !important; }
.mt-3 { margin-top: 30px !important; }
.mt-4 { margin-top: 40px !important; }
.mt-5 { margin-top: 50px !important; }

.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 10px !important; }
.mb-2 { margin-bottom: 20px !important; }
.mb-3 { margin-bottom: 30px !important; }
.mb-4 { margin-bottom: 40px !important; }
.mb-5 { margin-bottom: 50px !important; }

.text-center { text-align: center !important; }
.text-right { text-align: right !important; }
.text-primary { color: var(--primary) !important; }
.text-secondary { color: var(--secondary) !important; }
.text-accent { color: var(--accent) !important; }

.bg-primary { background-color: var(--primary) !important; }
.bg-secondary { background-color: var(--secondary) !important; }
.bg-accent { background-color: var(--accent) !important; }
.bg-light { background-color: var(--bg-light) !important; }
.bg-dark { background-color: var(--bg-dark) !important; }

.d-none { display: none !important; }
.d-block { display: block !important; }
.d-flex { display: flex !important; }

.iti { width: 100%; }

/* Media Queries */
@media (max-width: 1200px) {
  .container {
    max-width: 95%;
  }
  
  .hero-content,
  .approach-content {
    gap: 30px;
  }
}

@media (max-width: 992px) {
  .hero-content,
  .approach-content {
    flex-direction: column;
  }
  
  .hero-image,
  .hero-text,
  .approach-text,
  .approach-image {
    max-width: 100%;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: white;
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 40px 40px;
    transition: var(--transition);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-link {
    margin: 15px 0;
    font-size: 18px;
  }
  
  .hero-buttons,
  .testimonials-grid,
  .form-grid {
    flex-direction: column;
    grid-template-columns: 1fr;
  }
  
  .form-group {
    grid-column: span 1 !important;
  }
  
  .cookie-container {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .contact-form-container {
    padding: 30px 20px;
  }
}

@media (max-width: 576px) {
  .section-header {
    margin-bottom: 40px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .policy-page {
    padding: 150px 0 70px;
  }
}