:root {
  /* Tetrad color scheme */
  --primary-color: #3a86ff;
  --primary-dark: #2a65c7;
  --primary-light: #70a4ff;
  --secondary-color: #ff006e;
  --secondary-dark: #c80057;
  --secondary-light: #ff5b9e;
  --accent-1: #fb5607;
  --accent-1-dark: #d44500;
  --accent-1-light: #ff8144;
  --accent-2: #8338ec;
  --accent-2-dark: #6422c3;
  --accent-2-light: #a175f2;

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

  /* Typography */
  --heading-font: "Inter", sans-serif;
  --body-font: "IBM Plex Sans", sans-serif;

  /* Sizes */
  --container-width: 1280px;
  --container-padding: 2rem;
  --section-spacing: 5rem;
  --element-spacing: 1.5rem;

  /* 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);
  --shadow-xl: 0 12px 24px rgba(0, 0, 0, 0.2);

  /* Border radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark);
  background-color: var(--white);
  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: 3.5rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
}

h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.5rem;
}

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

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* Section Styles */
section {
  padding: 5rem 0;
  position: relative;
}

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

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

/* Button Styles */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: var(--radius-md);
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  border: none;
  outline: none;
  text-decoration: none;
  box-shadow: var(--shadow-md);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn:active {
  transform: translateY(1px);
}

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

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

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

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

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

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

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

.btn-accent-2:hover {
  background-color: var(--accent-2-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 & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
}

.header.scrolled {
  padding: 0.5rem 0;
  background-color: rgba(255, 255, 255, 0.98);
}

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

.logo {
  max-width: 60px;
}

.logo img {
  width: 100%;
  height: auto;
  transition: transform var(--transition-normal);
}

.logo img:hover {
  transform: scale(1.05);
}

.desktop-nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.desktop-nav a {
  color: var(--dark);
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
  transition: color var(--transition-fast);
}

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

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

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

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

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

.mobile-nav {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  background-color: var(--white);
  box-shadow: var(--shadow-md);
  z-index: 999;
  transform: translateY(-150%);
  transition: transform var(--transition-normal);
}

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

.mobile-nav ul {
  list-style: none;
  padding: 1.5rem;
}

.mobile-nav li {
  margin-bottom: 1rem;
}

.mobile-nav a {
  display: block;
  padding: 0.5rem 0;
  color: var(--dark);
  font-weight: 500;
  font-size: 1.25rem;
  transition: color var(--transition-fast);
}

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

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

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  color: var(--white);
  z-index: 2;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
  color: var(--white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  animation: fadeInDown 1.2s;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  animation: fadeInDown 1.4s;
}

.hero p {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto 2rem;
  color: var(--white);
  animation: fadeInUp 1.6s;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  animation: fadeInUp 1.8s;
}

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

.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4rem;
}

.about-image {
  flex: 1 1 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: perspective(800px) rotateY(-5deg);
  transition: transform var(--transition-normal);
}

.about-image:hover {
  transform: perspective(800px) rotateY(0);
}

.about-image img {
  width: 100%;
  height: auto;
  transition: transform var(--transition-normal);
}

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

.about-text {
  flex: 1 1 500px;
}

.about-text p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  color: var(--dark-gray);
}

/* Features Section */
.features {
  background-color: var(--off-white);
}

.features-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.features-intro p {
  font-size: 1.2rem;
  color: var(--dark-gray);
}

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

.feature-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal),
    box-shadow var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.feature-card h3 {
  color: var(--dark);
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.feature-card p {
  color: var(--dark-gray);
  font-size: 1rem;
}

/* Vision Section */
.vision {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: var(--white);
  text-align: center;
  position: relative;
}

.vision .section-title {
  color: var(--white);
}

.vision .section-title:after {
  background: var(--white);
}

.vision-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.vision blockquote {
  font-size: 1.5rem;
  font-style: italic;
  margin-bottom: 3rem;
  position: relative;
  padding: 0 2rem;
}

.vision blockquote::before,
.vision blockquote::after {
  content: '"';
  font-size: 4rem;
  position: absolute;
  opacity: 0.3;
  font-family: Georgia, serif;
}

.vision blockquote::before {
  top: -20px;
  left: -10px;
}

.vision blockquote::after {
  bottom: -50px;
  right: -10px;
}

.vision blockquote p {
  color: var(--white);
}

.vision blockquote footer {
  font-size: 1.1rem;
  font-style: normal;
  margin-top: 1rem;
  opacity: 0.8;
}

.vision-text {
  text-align: left;
}

.vision-text p {
  color: var(--white);
  margin-bottom: 1.5rem;
}

/* Portfolio Section */
.portfolio {
  background-color: var(--white);
}

.portfolio-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.portfolio-slider {
  position: relative;
  margin: 0 auto;
  overflow: hidden;
}

.slider-container {
  display: flex;
  transition: transform var(--transition-slow);
  margin-bottom: 2rem;
}

.slide {
  flex: 0 0 100%;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.image-container {
  width: 100%;
  height: 250px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin-bottom: 1.5rem;
}

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

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

.slide-content {
  text-align: center;
  max-width: 500px;
}

.slide-content h3 {
  margin-bottom: 0.75rem;
  color: var(--dark);
}

.slide-content p {
  color: var(--dark-gray);
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.prev-btn,
.next-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--white);
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.prev-btn:hover,
.next-btn:hover {
  background-color: var(--primary-color);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.prev-btn span,
.next-btn span {
  font-size: 1.5rem;
  line-height: 1;
}

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

.resources-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1.2rem;
  color: var(--dark-gray);
}

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

.resource-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal),
    box-shadow var(--transition-normal);
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.resource-card h3 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

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

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

.resource-card p {
  color: var(--dark-gray);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.resource-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  font-size: 0.9rem;
  color: var(--medium-gray);
}

.read-more {
  color: var(--accent-1);
  font-weight: 600;
  position: relative;
  transition: color var(--transition-fast);
  display: inline-flex;
  align-items: center;
}

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

.read-more::after {
  content: "→";
  margin-left: 5px;
  transition: transform var(--transition-fast);
}

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

/* Customer Stories Section */
.customer-stories {
  background-color: var(--white);
}

.stories-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: center;
  flex-direction: column;
}

.story-card {
  background-color: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  flex: 1 1 300px;
  width: 100%;
  transition: transform var(--transition-normal),
    box-shadow var(--transition-normal);
}

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

.story-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.story-header img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 1rem;
  border: 3px solid var(--white);
  box-shadow: var(--shadow-sm);
}

.story-meta h3 {
  margin-bottom: 0.25rem;
  font-size: 1.2rem;
}

.rating {
  color: var(--accent-1);
  font-size: 1.1rem;
}

.story-content {
  color: var(--dark-gray);
  font-style: italic;
  position: relative;
}

.story-content::before {
  content: '"';
  font-size: 4rem;
  position: absolute;
  top: -2rem;
  left: -1rem;
  color: var(--light-gray);
  font-family: Georgia, serif;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--light-gray);
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

.dot.active,
.dot:hover {
  background-color: var(--primary-color);
}

/* Clientele Section */
.clientele {
  background-color: var(--off-white);
}

.clientele-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1.2rem;
  color: var(--dark-gray);
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2.5rem;
}

.client-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal),
    box-shadow var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.client-card img {
  max-width: 180px;
  height: auto;
  margin: 0 auto 1.5rem;
  transition: transform var(--transition-normal);
}

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

.client-card h3 {
  margin-bottom: 1rem;
  color: var(--dark);
}

.client-card p {
  color: var(--dark-gray);
}

/* Press Section */
.press {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: var(--white);
  position: relative;
}

.press .section-title {
  color: var(--white);
}

.press .section-title:after {
  background-color: var(--white);
}

.press-content {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2.5rem;
}

.press-quote {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transition: transform var(--transition-normal);
}

.press-quote:hover {
  transform: translateY(-10px);
}

.press-quote blockquote {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.press-quote blockquote p {
  color: var(--white);
}

.press-quote blockquote footer {
  font-size: 0.9rem;
  opacity: 0.8;
  font-style: italic;
}

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

.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
}

.contact-info {
  flex: 1 1 400px;
}

.contact-info h3 {
  margin-bottom: 1.5rem;
  color: var(--dark);
  font-size: 1.5rem;
}

.contact-info p {
  margin-bottom: 2rem;
  color: var(--dark-gray);
  font-size: 1.1rem;
}

.contact-details {
  list-style: none;
}

.contact-details li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  color: var(--dark-gray);
}

.contact-details .icon {
  margin-right: 1rem;
  font-size: 1.5rem;
  color: var(--primary-color);
}

.contact-form-container {
  flex: 1 1 500px;
}

.contact-form-container h3 {
  margin-bottom: 1.5rem;
  color: var(--dark);
  font-size: 1.5rem;
}

.contact-form {
  background-color: var(--off-white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--light-gray);
  border-radius: var(--radius-md);
  font-family: var(--body-font);
  font-size: 1rem;
  color: var(--dark);
  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 3px rgba(58, 134, 255, 0.2);
}

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

/* Footer */
.footer {
  background-color: var(--dark);
  color: var(--white);
  padding: 5rem 0 2rem;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-logo {
  flex: 1 1 300px;
}

.footer-logo img {
  max-width: 160px;
  margin-bottom: 1.5rem;
}

.footer-logo p {
  color: var(--light-gray);
}

.footer-links {
  flex: 2 1 600px;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-links-column {
  flex: 1 1 180px;
}

.footer-links-column h3 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

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

.footer-links-column li {
  margin-bottom: 0.75rem;
}

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

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

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

.footer-bottom p {
  color: var(--medium-gray);
  font-size: 0.9rem;
}

/* Success Page */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--off-white);
  text-align: center;
  padding: 2rem;
}

.success-content {
  background-color: var(--white);
  padding: 4rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  max-width: 600px;
  width: 100%;
  animation: fadeInUp 1s;
}

.success-icon {
  font-size: 5rem;
  color: var(--accent-1);
  margin-bottom: 2rem;
}

.success-content h1 {
  margin-bottom: 1.5rem;
  color: var(--dark);
}

.success-content p {
  margin-bottom: 2rem;
  color: var(--dark-gray);
}

/* Privacy & Terms Pages */
.page-content {
  padding-top: 120px;
  max-width: 800px;
  margin: 0 auto;
  padding-bottom: 5rem;
}

.page-content h1 {
  margin-bottom: 2rem;
  text-align: center;
}

.page-content h2 {
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

.page-content p {
  margin-bottom: 1.5rem;
  color: var(--dark-gray);
}

.page-content ul {
  margin-bottom: 2rem;
  padding-left: 2rem;
}

.page-content li {
  margin-bottom: 0.75rem;
  color: var(--dark-gray);
}

/* Animation Keyframes */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* Cookie Consent Styling */
#cookie-consent {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-family: var(--body-font);
}

#cookie-consent p {
  margin-bottom: 0.5rem;
  color: var(--white);
}

#accept-cookies {
  font-family: var(--body-font);
  font-weight: 600;
  transition: background-color var(--transition-fast),
    transform var(--transition-fast);
}

#accept-cookies:hover {
  background-color: #5cbb60;
  transform: translateY(-2px);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.2rem;
  }

  .hero h1 {
    font-size: 3.5rem;
  }

  .hero h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .hero h2 {
    font-size: 1.8rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .desktop-nav {
    display: none;
  }

  .burger-menu {
    display: flex;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }

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

  .contact-content,
  .footer-content {
    gap: 2rem;
  }

  .vision blockquote {
    font-size: 1.3rem;
    padding: 0 1rem;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .hero h1 {
    font-size: 2.4rem;
  }

  .hero h2 {
    font-size: 1.6rem;
  }

  .hero p {
    font-size: 1rem;
  }

  section {
    padding: 4rem 0;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .success-content {
    padding: 2.5rem;
  }
}
