/* Style.css */

/* CSS Variables */
:root {
  /* Typography */
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  
  /* Colors */
  --primary-color: #0056b3;
  --primary-color-dark: #003b7a;
  --primary-color-light: #4d8ddb;
  --secondary-color: #ff6b00;
  --secondary-color-dark: #cc5500;
  --secondary-color-light: #ff9540;
  --accent-color: #00c9a7;
  --accent-color-dark: #00a78b;
  --accent-color-light: #40ffe3;
  
  /* Neutral Colors */
  --text-color: #333333;
  --text-color-light: #666666;
  --text-color-dark: #222222;
  --background-color: #ffffff;
  --background-color-alt: #f8f9fa;
  --border-color: #e5e5e5;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--primary-color-light));
  --gradient-secondary: linear-gradient(135deg, var(--secondary-color), var(--secondary-color-light));
  --gradient-accent: linear-gradient(135deg, var(--accent-color), var(--accent-color-light));
  --gradient-dark: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,0,0,0.4));
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 8rem;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* Reset & Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 1.6rem;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--background-color);
  overflow-x: hidden;
}

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

h1 {
  font-size: 4.8rem;
  margin-bottom: var(--space-md);
}

h2 {
  font-size: 3.6rem;
  margin-bottom: var(--space-md);
}

h3 {
  font-size: 2.4rem;
}

h4 {
  font-size: 2rem;
}

p {
  margin-bottom: var(--space-sm);
}

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

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

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

ul, ol {
  list-style: none;
}

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

/* Buttons */
.btn, button, input[type="submit"] {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 1.6rem;
  font-weight: 500;
  padding: 1.2rem 2.4rem;
  border-radius: var(--radius-md);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all var(--transition-medium);
  cursor: pointer;
  border: none;
  outline: none;
  box-shadow: var(--shadow-sm);
}

.primary-btn {
  background: var(--gradient-primary);
  color: #ffffff;
}

.primary-btn:hover {
  background: var(--primary-color-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: #ffffff;
}

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

.secondary-btn:hover {
  background: var(--secondary-color-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: #ffffff;
}

.text-btn {
  background: transparent;
  color: var(--primary-color);
  padding: 0.8rem 1.6rem;
  box-shadow: none;
}

.text-btn:hover {
  background: rgba(0, 86, 179, 0.1);
  color: var(--primary-color-dark);
}

/* Section Styles */
section {
  padding: var(--space-lg) 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.section-header h2 {
  position: relative;
  display: inline-block;
  margin-bottom: var(--space-sm);
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
}

.section-header p {
  max-width: 800px;
  margin: 0 auto;
  color: var(--text-color-light);
  font-size: 1.8rem;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-dark);
  z-index: 1;
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000 ;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-medium);
}

.header.scrolled {
  background-color: #ffffff;
  box-shadow: var(--shadow-md);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 0;
}

.logo {
  z-index: 101;
}

.logo h1 {
  font-size: 20px;
}

.desktop-nav {
  display: flex;
}

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

.desktop-nav li {
  margin: 0 var(--space-sm);
}

.desktop-nav a {
  color: var(--text-color);
  font-weight: 500;
  padding: 0.8rem;
  position: relative;
}

.desktop-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width var(--transition-medium);
}

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

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

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  z-index: 101;
}

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

.mobile-nav {
  position: fixed;
  top: 70px;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: fit-content;
  background-color: #ffffff;
  box-shadow: var(--shadow-lg);
  z-index: 100;
  transition: right var(--transition-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);

}

.mobile-nav.active {
  right: 0;
}

.mobile-nav ul {
  width: 100%;
}

.mobile-nav li {
  margin-bottom: var(--space-md);
  text-align: center;
}

.mobile-nav a {
  color: var(--text-color);
  font-size: 2rem;
  font-weight: 500;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

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

.mobile-menu-btn.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  padding: 0;
  margin-top: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-lg);
}

.hero-content h1, .hero-content h2, .hero-content p {
  color: #FFFFFF;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  margin-bottom: var(--space-md);
}

.hero-content h1 {
  font-size: 5.6rem;
}

.hero-content h2 {
  font-size: 3.2rem;
  font-weight: 500;
  margin-bottom: var(--space-sm);
}

.hero-content p {
  font-size: 2rem;
  margin-bottom: var(--space-lg);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

/* Services Section */
.services {
  background-color: var(--background-color);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: var(--space-md);
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #ffffff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: all var(--transition-medium);
}

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

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

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

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

.card-content {
  padding: var(--space-md);
  text-align: center;
}

.card-content h3 {
  margin-bottom: var(--space-sm);
  color: var(--text-color-dark);
}

.card-content p {
  color: var(--text-color);
}

/* Pricing Section */
.pricing {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  padding: var(--space-xl) 0;
}

.pricing .section-header h2,
.pricing .section-header p {
  color: #FFFFFF;
  position: relative;
  z-index: 2;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-md);
  position: relative;
  z-index: 2;
}

.pricing-card {
  background-color: #ffffff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: all var(--transition-medium);
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
  z-index: 3;
}

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

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.ribbon {
  position: absolute;
  top: 20px;
  right: -30px;
  background: var(--gradient-secondary);
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 700;
  padding: 0.5rem 3rem;
  transform: rotate(45deg);
  z-index: 4;
}

.pricing-header {
  padding: var(--space-md);
  text-align: center;
  background: var(--gradient-primary);
  color: #ffffff;
}

.pricing-header h3 {
  color: #ffffff;
  margin-bottom: var(--space-sm);
}

.price {
  display: flex;
  justify-content: center;
  align-items: baseline;
}

.amount {
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 1;
}

.currency {
  font-size: 2.4rem;
  font-weight: 500;
  margin-right: 0.5rem;
}

.period {
  font-size: 1.6rem;
  opacity: 0.8;
}

.pricing-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  text-align: center;
}

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

.pricing-features {
  padding: var(--space-md);
  flex-grow: 1;
}

.pricing-features ul {
  margin-bottom: var(--space-md);
}

.pricing-features li {
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-color);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-footer {
  padding: 0 var(--space-md) var(--space-md);
  text-align: center;
}

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

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-md);
}

.resource-card {
  background-color: #ffffff;
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-medium);
}

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

.resource-card h3 {
  margin-bottom: var(--space-sm);
}

.resource-card h3 a {
  color: var(--primary-color);
  transition: color var(--transition-fast);
}

.resource-card h3 a:hover {
  color: var(--primary-color-dark);
}

.resource-card p {
  color: var(--text-color-light);
}

/* Accolades Section */
.accolades {
  background-color: #ffffff;
}

.accolades-timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.accolades-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
}

.timeline-item {
  position: relative;
  width: 100%;
  margin-bottom: var(--space-lg);
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-left: auto;
  padding-left: var(--space-lg);
  text-align: left;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-right: auto;
  padding-right: var(--space-lg);
  text-align: right;
}

.timeline-dot {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gradient-primary);
  z-index: 2;
}

.timeline-content {
  width: 50%;
}

.timeline-content h3 {
  font-size: 2.4rem;
  color: var(--primary-color);
  margin-bottom: var(--space-sm);
}

.accolade-card {
  display: flex;
  background-color: #ffffff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: all var(--transition-medium);
}

.timeline-item:nth-child(odd) .accolade-card {
  flex-direction: row;
}

.timeline-item:nth-child(even) .accolade-card {
  flex-direction: row-reverse;
}

.accolade-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.accolade-icon {
  flex: 0 0 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: var(--space-sm);
  background: var(--gradient-primary);
}

.accolade-icon img {
  max-width: 100%;
  height: auto;
}

.accolade-info {
  flex: 1;
  padding: var(--space-md);
}

.accolade-info h4 {
  margin-bottom: var(--space-sm);
  color: var(--text-color-dark);
}

.accolade-info p {
  color: var(--text-color);
}

/* Testimonials Section */
.testimonials {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  padding: var(--space-xl) 0;
}

.testimonials .section-header h2,
.testimonials .section-header p {
  color: #FFFFFF;
  position: relative;
  z-index: 2;
}

.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-md);
  position: relative;
  z-index: 2;
}

.testimonial-card {
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: all var(--transition-medium);
}

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

.testimonial-content {
  padding: var(--space-md);
  position: relative;
}

.quote-icon {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 2.4rem;
  color: var(--primary-color-light);
  opacity: 0.2;
}

.testimonial-content p {
  margin: var(--space-md) 0;
  font-style: italic;
  color: var(--text-color);
}

.rating {
  color: var(--secondary-color);
  font-size: 1.8rem;
  margin-bottom: var(--space-sm);
}

.testimonial-author {
  display: flex;
  align-items: center;
  padding: var(--space-md);
  background: var(--background-color-alt);
}

.testimonial-author img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: var(--space-sm);
}

.author-info h4 {
  margin-bottom: 0.5rem;
  color: var(--text-color-dark);
}

.author-info p {
  color: var(--text-color-light);
  font-size: 1.4rem;
  margin: 0;
}

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

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

.contact-info {
  display: flex;
  flex-direction: column;
}

.info-item {
  display: flex;
  margin-bottom: var(--space-md);
}

.info-item .icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  margin-right: var(--space-sm);
}

.info-item h3 {
  color: var(--text-color-dark);
  margin-bottom: 0.5rem;
}

.info-item p, .info-item a {
  color: var(--text-color);
}

.map-container {
  width: 100%;
  height: 300px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: var(--space-md);
}

.map-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-form {
  background-color: #ffffff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: var(--space-md);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-color-dark);
}

.form-group input, 
.form-group select, 
.form-group textarea {
  width: 100%;
  padding: 1.2rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1.6rem;
  transition: all var(--transition-fast);
}

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

/* Footer Section */
.footer {
  background-color: #1a1a1a;
  color: #ffffff;
  padding: var(--space-lg) 0 var(--space-md);
}

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

.footer-logo {
  margin-bottom: var(--space-md);
}

.footer-logo img {
  margin-bottom: var(--space-sm);
}

.footer-logo p {
  color: #cccccc;
}

.footer h3 {
  color: #ffffff;
  margin-bottom: var(--space-sm);
  font-size: 1.8rem;
}

.footer-links ul, 
.footer-services ul, 
.footer-contact ul {
  margin-bottom: var(--space-md);
}

.footer-links li, 
.footer-services li, 
.footer-contact li {
  margin-bottom: 0.8rem;
}

.footer-links a, 
.footer-services a {
  color: #cccccc;
  transition: color var(--transition-fast);
}

.footer-links a:hover, 
.footer-services a:hover {
  color: #ffffff;
}

.footer-contact li {
  display: flex;
  align-items: center;
  color: #cccccc;
}

.footer-contact li i {
  margin-right: 1rem;
  color: var(--primary-color-light);
}

.footer-contact a {
  color: #cccccc;
  transition: color var(--transition-fast);
}

.footer-contact a:hover {
  color: #ffffff;
}

.social-links {
  margin-top: var(--space-md);
}

.social-links a {
  color: #ffffff;
  margin-right: var(--space-sm);
  font-size: 1.6rem;
  transition: color var(--transition-fast);
}

.social-links a:hover {
  color: var(--primary-color-light);
}

.footer-bottom {
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  color: #999999;
  margin: 0;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 2000;
  justify-content: center;
  align-items: center;
}

.modal.active {
  display: flex;
}

.modal-content {
  background-color: #ffffff;
  width: 90%;
  max-width: 500px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  position: relative;
  padding: var(--space-md);
  max-height: 90vh;
  overflow-y: auto;
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 2.4rem;
  color: var(--text-color-light);
  cursor: pointer;
  transition: color var(--transition-fast);
}

.close-modal:hover {
  color: var(--text-color-dark);
}

/* Cookie Popup */
.cookie-popup {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 9999;
}

.cookie-content {
  padding: var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-content p {
  color: #ffffff;
  margin: 0;
  flex: 1;
}

.cookie-btn {
  background: var(--gradient-primary);
  color: #ffffff;
  padding: 1rem 2rem;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1.4rem;
  transition: all var(--transition-fast);
}

.cookie-btn:hover {
  background: var(--primary-color-dark);
  transform: translateY(-2px);
}

/* Success Page */
.success-page {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: var(--space-lg) var(--space-md);
}

.success-content {
  max-width: 600px;
  background-color: #ffffff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: var(--space-lg);
}

.success-icon {
  font-size: 8rem;
  color: var(--accent-color);
  margin-bottom: var(--space-md);
}

.success-content h1 {
  margin-bottom: var(--space-md);
}

.success-content p {
  margin-bottom: var(--space-lg);
}

/* Other Pages Content */
.page-content {
  padding-top: 100px;
  min-height: calc(100vh - 400px);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

[data-aos="fade-up"] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-up"].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

[data-aos="fade-right"] {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-right"].aos-animate {
  opacity: 1;
  transform: translateX(0);
}

[data-aos="fade-left"] {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-left"].aos-animate {
  opacity: 1;
  transform: translateX(0);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  html {
    font-size: 56.25%; /* 9px */
  }
  
  .accolades-timeline::before {
    left: 30px;
  }
  
  .timeline-dot {
    left: 30px;
  }
  
  .timeline-item .timeline-content {
    width: calc(100% - 60px);
    margin-left: 60px;
    padding-left: var(--space-md);
    text-align: left;
  }
  
  .timeline-item:nth-child(even) .timeline-content {
    margin-right: 0;
    padding-right: 0;
    text-align: left;
  }
  
  .timeline-item:nth-child(even) .accolade-card {
    flex-direction: row;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 50%; /* 8px */
  }
  
  .desktop-nav {
    display: none;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .hero-content h1 {
    font-size: 4.8rem;
  }
  
  .hero-content h2 {
    font-size: 2.8rem;
  }
  
  .hero-content p {
    font-size: 1.8rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-buttons .btn {
    width: 100%;
    margin-bottom: var(--space-sm);
  }
  
  .services-grid,
  .pricing-grid,
  .resources-grid,
  .testimonials-slider {
    grid-template-columns: 1fr;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
  }
  
  .pricing-card.featured {
    transform: scale(1);
  }
  
  .pricing-card.featured:hover {
    transform: translateY(-10px);
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
}

@media (max-width: 480px) {
  .section-header h2 {
    font-size: 3rem;
  }
  
  .hero-content h1 {
    font-size: 3.6rem;
  }
  
  .hero-content h2 {
    font-size: 2.4rem;
  }
  
  .accolade-icon {
    flex: 0 0 60px;
  }
  
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-btn {
    width: 100%;
  }
}

/* About, Privacy and Terms Pages */
.about-page,
.privacy-page,
.terms-page,
.contacts-page {
  padding-top: 100px;
  min-height: calc(100vh - 400px);
}

.about-content,
.privacy-content,
.terms-content,
.contacts-content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-lg) var(--space-md);
}

.about-content h1,
.privacy-content h1,
.terms-content h1,
.contacts-content h1 {
  margin-bottom: var(--space-md);
}

.about-content h2,
.privacy-content h2,
.terms-content h2,
.contacts-content h2 {
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}

.about-content p,
.privacy-content p,
.terms-content p,
.contacts-content p {
  margin-bottom: var(--space-md);
}

.about-content ul,
.privacy-content ul,
.terms-content ul,
.contacts-content ul {
  margin-bottom: var(--space-md);
  padding-left: var(--space-md);
  list-style-type: disc;
}

.about-content li,
.privacy-content li,
.terms-content li,
.contacts-content li {
  margin-bottom: var(--space-sm);
}