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

:root {
  --primary-blue: #2563eb;
  --primary-dark: #1e40af;
  --primary-light: #3b82f6;
  --text-dark: #1f2937;
  --text-medium: #4b5563;
  --text-light: #6b7280;
  --bg-white: #ffffff;
  --bg-light: #f9fafb;
  --bg-grey: #f3f4f6;
  --border-color: #e5e7eb;
  --success-green: #10b981;
  --font-primary: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--text-dark);
  color: var(--bg-white);
  padding: 20px;
  z-index: 10000;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-content p {
  margin: 0;
  flex: 1;
  min-width: 300px;
}

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

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

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

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

.logo {
  text-decoration: none;
}

.logo-text {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-blue);
}

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

.nav-menu a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: color 0.3s ease;
}

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

.btn-nav {
  background: var(--primary-blue);
  color: var(--bg-white) !important;
  padding: 10px 24px;
  border-radius: 6px;
  transition: background 0.3s ease;
}

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

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

.mobile-menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: 0.3s;
}

/* Buttons */
.btn-primary {
  display: inline-block;
  background: var(--primary-blue);
  color: var(--bg-white);
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 2px solid var(--primary-blue);
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--text-dark);
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 2px solid var(--border-color);
  cursor: pointer;
}

.btn-secondary:hover {
  border-color: var(--primary-blue);
  color: var(--primary-blue);
}

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

.btn-full {
  width: 100%;
}

/* Hero Section */
.hero {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.9) 0%, rgba(37, 99, 235, 0.85) 100%);
}

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

.hero-title {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 40px;
  opacity: 0.95;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-buttons .btn-secondary {
  background: var(--bg-white);
  color: var(--primary-blue);
  border-color: var(--bg-white);
}

.hero-buttons .btn-secondary:hover {
  background: var(--bg-light);
}

/* Stats Section */
.stats-section {
  padding: 80px 0;
  background: var(--bg-white);
}

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

.stat-item {
  padding: 20px;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 10px;
}

.stat-label {
  font-size: 18px;
  color: var(--text-medium);
}

/* Section Styles */
.section-title {
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.section-subtitle {
  font-size: 18px;
  text-align: center;
  color: var(--text-medium);
  max-width: 700px;
  margin: 0 auto 60px;
}

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

/* Services Overview */
.services-overview {
  padding: 80px 0;
  background: var(--bg-light);
}

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

.service-card {
  background: var(--bg-white);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-content {
  padding: 30px;
}

.service-content h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.service-content p {
  color: var(--text-medium);
  margin-bottom: 20px;
  line-height: 1.6;
}

.link-arrow {
  color: var(--primary-blue);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}

.link-arrow:hover {
  color: var(--primary-dark);
}

/* Two Column Layout */
.two-column-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.two-column-layout.reverse {
  direction: rtl;
}

.two-column-layout.reverse > * {
  direction: ltr;
}

.content-column h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.intro-text {
  font-size: 18px;
  color: var(--text-medium);
  margin-bottom: 30px;
  line-height: 1.7;
}

.features-list {
  list-style: none;
  margin-bottom: 30px;
}

.features-list li {
  margin-bottom: 25px;
}

.features-list strong {
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.features-list p {
  color: var(--text-medium);
  line-height: 1.6;
  margin: 0;
}

.feature-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Why Choose Us */
.why-choose-us {
  padding: 80px 0;
  background: var(--bg-white);
}

/* Testimonials */
.testimonials {
  padding: 80px 0;
  background: var(--bg-light);
}

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

.testimonial-card {
  background: var(--bg-white);
  padding: 35px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.testimonial-content {
  margin-bottom: 25px;
}

.testimonial-content p {
  color: var(--text-medium);
  font-style: italic;
  line-height: 1.7;
}

.testimonial-author strong {
  display: block;
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 5px;
}

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

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
  color: var(--bg-white);
}

.cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 18px;
  margin-bottom: 40px;
  opacity: 0.95;
}

.cta-content .btn-primary {
  background: var(--bg-white);
  color: var(--primary-blue);
  border-color: var(--bg-white);
}

.cta-content .btn-primary:hover {
  background: var(--bg-light);
  transform: translateY(-2px);
}

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

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

.footer-logo {
  font-size: 24px;
  font-weight: 700;
  color: var(--bg-white);
  margin-bottom: 15px;
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.footer-column h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--bg-white);
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

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

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* Page Hero */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
  color: var(--bg-white);
  padding: 80px 0;
  text-align: center;
}

.page-hero h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
}

.page-hero p {
  font-size: 20px;
  opacity: 0.95;
}

/* Service Detail */
.service-detail {
  padding: 80px 0;
}

.service-detail.alt-bg {
  background: var(--bg-light);
}

/* Additional Services */
.additional-services {
  padding: 80px 0;
  background: var(--bg-white);
}

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

.service-card-small {
  padding: 35px;
  background: var(--bg-light);
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card-small:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.service-card-small h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.service-card-small p {
  color: var(--text-medium);
  line-height: 1.6;
  margin: 0;
}

/* Insights */
.featured-insight {
  padding: 80px 0;
  background: var(--bg-white);
}

.featured-card {
  background: var(--bg-light);
  border-radius: 8px;
  overflow: hidden;
}

.featured-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.featured-content {
  padding: 40px;
}

.category-badge {
  display: inline-block;
  background: var(--primary-blue);
  color: var(--bg-white);
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.featured-content h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.article-excerpt {
  color: var(--text-medium);
  line-height: 1.7;
  margin-bottom: 20px;
}

.article-meta {
  display: flex;
  gap: 15px;
  color: var(--text-light);
  font-size: 14px;
}

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

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

.insight-card {
  background: var(--bg-white);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.insight-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.insight-content {
  padding: 25px;
}

.insight-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 15px 0;
  color: var(--text-dark);
}

.insight-content p {
  color: var(--text-medium);
  line-height: 1.6;
  margin-bottom: 15px;
}

/* Trends Section */
.trends-section {
  padding: 80px 0;
  background: var(--bg-white);
}

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

.trend-item {
  padding: 30px;
  border-left: 4px solid var(--primary-blue);
  background: var(--bg-light);
  border-radius: 4px;
}

.trend-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary-blue);
  opacity: 0.3;
  margin-bottom: 15px;
}

.trend-item h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.trend-item p {
  color: var(--text-medium);
  line-height: 1.6;
}

/* Newsletter */
.newsletter-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.newsletter-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.newsletter-content p {
  font-size: 18px;
  color: var(--text-medium);
  margin-bottom: 30px;
}

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

.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border: 2px solid var(--border-color);
  border-radius: 6px;
  font-size: 16px;
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--primary-blue);
}

/* About */
.company-story {
  padding: 80px 0;
  background: var(--bg-white);
}

.company-story p {
  margin-bottom: 20px;
}

/* Mission & Vision */
.mission-vision {
  padding: 80px 0;
  background: var(--bg-light);
}

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

.mv-card {
  background: var(--bg-white);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.mv-card h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--primary-blue);
}

.mv-card p {
  color: var(--text-medium);
  line-height: 1.7;
}

/* Values */
.values-section {
  padding: 80px 0;
  background: var(--bg-white);
}

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

.value-card {
  text-align: center;
  padding: 35px;
}

.value-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-blue);
  color: var(--bg-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 700;
  margin: 0 auto 25px;
}

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

.value-card p {
  color: var(--text-medium);
  line-height: 1.6;
}

/* Team */
.team-section {
  padding: 80px 0;
  background: var(--bg-light);
}

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

.team-member {
  background: var(--bg-white);
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
}

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

.team-role {
  color: var(--primary-blue);
  font-weight: 500;
  margin-bottom: 15px;
}

.team-bio {
  color: var(--text-medium);
  font-size: 14px;
  line-height: 1.6;
}

/* Why Choose About */
.why-choose-about {
  padding: 80px 0;
  background: var(--bg-white);
}

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

.feature-item-about {
  padding: 30px;
  background: var(--bg-light);
  border-radius: 8px;
}

.feature-item-about h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.feature-item-about p {
  color: var(--text-medium);
  line-height: 1.6;
}

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

.contact-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
}

/* Contact Form */
.contact-form-container h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.contact-form-container > p {
  color: var(--text-medium);
  margin-bottom: 30px;
}

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

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid var(--border-color);
  border-radius: 6px;
  font-size: 16px;
  font-family: var(--font-primary);
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
}

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

/* Contact Info */
.contact-info-container h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--text-dark);
}

.contact-info-card {
  margin-bottom: 30px;
  padding: 25px;
  background: var(--bg-light);
  border-radius: 8px;
}

.contact-info-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.contact-info-card p {
  color: var(--text-medium);
  margin-bottom: 5px;
}

.contact-link {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: var(--primary-dark);
}

.info-note {
  font-size: 14px;
  color: var(--text-light);
  margin-top: 8px;
}

/* Map Section */
.map-section {
  padding: 60px 0;
  background: var(--bg-light);
}

.map-placeholder {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.map-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.map-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(30, 64, 175, 0.9);
  color: var(--bg-white);
  padding: 20px;
  text-align: center;
}

.map-overlay p {
  margin: 0;
}

/* FAQ */
.faq-section {
  padding: 80px 0;
  background: var(--bg-white);
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-category {
  margin-bottom: 50px;
}

.faq-category h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--primary-blue);
}

.faq-item {
  margin-bottom: 15px;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 20px;
  background: var(--bg-white);
  border: none;
  text-align: left;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: var(--bg-light);
}

.faq-icon {
  font-size: 24px;
  color: var(--primary-blue);
  transition: transform 0.3s ease;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 1000px;
}

.faq-answer p {
  padding: 20px;
  color: var(--text-medium);
  line-height: 1.7;
  margin: 0;
}

.faq-cta {
  margin-top: 60px;
  text-align: center;
  padding: 50px;
  background: var(--bg-light);
  border-radius: 8px;
}

.faq-cta h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.faq-cta p {
  font-size: 18px;
  color: var(--text-medium);
  margin-bottom: 30px;
}

/* Legal Pages */
.legal-hero {
  background: var(--text-dark);
  color: var(--bg-white);
  padding: 60px 0;
  text-align: center;
}

.legal-hero h1 {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 15px;
}

.legal-hero p {
  font-size: 16px;
  opacity: 0.8;
}

.legal-content {
  padding: 80px 0;
  background: var(--bg-white);
}

.legal-text {
  max-width: 900px;
  margin: 0 auto;
}

.intro-paragraph {
  font-size: 18px;
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 40px;
  padding: 25px;
  background: var(--bg-light);
  border-left: 4px solid var(--primary-blue);
  border-radius: 4px;
}

.legal-text h2 {
  font-size: 28px;
  font-weight: 700;
  margin: 50px 0 20px 0;
  color: var(--text-dark);
}

.legal-text h3 {
  font-size: 22px;
  font-weight: 600;
  margin: 30px 0 15px 0;
  color: var(--text-dark);
}

.legal-text p {
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 20px;
}

.legal-text ul {
  margin: 20px 0;
  padding-left: 30px;
}

.legal-text ul li {
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 10px;
}

.legal-text a {
  color: var(--primary-blue);
  text-decoration: none;
}

.legal-text a:hover {
  text-decoration: underline;
}

.legal-contact {
  margin-top: 50px;
  padding: 30px;
  background: var(--bg-light);
  border-radius: 8px;
}

.legal-contact h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-dark);
}

/* Cookie Table */
.cookie-table {
  margin: 30px 0;
  overflow-x: auto;
}

.cookie-table table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-white);
  border: 1px solid var(--border-color);
}

.cookie-table th,
.cookie-table td {
  padding: 15px;
  text-align: left;
  border: 1px solid var(--border-color);
}

.cookie-table th {
  background: var(--bg-light);
  font-weight: 600;
  color: var(--text-dark);
}

.cookie-table td {
  color: var(--text-medium);
}

.styled-list {
  list-style: none;
  padding-left: 0;
}

.styled-list li {
  padding-left: 30px;
  position: relative;
  margin-bottom: 15px;
}

.styled-list li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--primary-blue);
  font-weight: 700;
}

/* Thank You Page */
.thank-you-section {
  padding: 100px 0;
  background: var(--bg-white);
}

.thank-you-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.success-icon {
  margin-bottom: 40px;
}

.thank-you-content h1 {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 25px;
  color: var(--text-dark);
}

.thank-you-message {
  font-size: 20px;
  color: var(--text-medium);
  line-height: 1.7;
  margin-bottom: 50px;
}

.thank-you-details {
  margin-bottom: 50px;
  padding: 40px;
  background: var(--bg-light);
  border-radius: 8px;
}

.thank-you-details h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 35px;
  color: var(--text-dark);
}

.next-steps {
  display: grid;
  gap: 30px;
  text-align: left;
}

.step-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--primary-blue);
  color: var(--bg-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  flex-shrink: 0;
}

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

.step-content p {
  color: var(--text-medium);
  line-height: 1.6;
  margin: 0;
}

.thank-you-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.contact-reminder {
  padding: 30px;
  background: var(--bg-light);
  border-radius: 8px;
}

.contact-reminder p {
  margin: 8px 0;
  color: var(--text-medium);
}

.contact-reminder strong {
  color: var(--text-dark);
}

.contact-reminder a {
  color: var(--primary-blue);
  text-decoration: none;
}

.contact-reminder a:hover {
  text-decoration: underline;
}

/* Additional Resources */
.additional-resources {
  padding: 80px 0;
  background: var(--bg-light);
}

.additional-resources h2 {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
  color: var(--text-dark);
}

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

.resource-card {
  background: var(--bg-white);
  padding: 35px;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.resource-card p {
  color: var(--text-medium);
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .two-column-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

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

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

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

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

  .nav-menu li {
    width: 100%;
    padding: 15px 0;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .section-title {
    font-size: 32px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .thank-you-actions {
    flex-direction: column;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
}

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

  .hero-title {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .section-title {
    font-size: 28px;
  }

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

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

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

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