:root {
  /* Light Theme Colors - Soft Orange Tones */
  --primary-color: #ff8c42;
  --primary-light: #ffb380;
  --primary-dark: #e67a2e;
  --secondary-color: #ffd4b3;
  --accent-color: #ff6b35;

  --bg-color: #fff9f5;
  --surface-color: #ffffff;
  --text-primary: #2d2d2d;
  --text-secondary: #666666;
  --border-color: #ffe4d1;

  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 140, 66, 0.2);

  --shadow-sm: 0 2px 8px rgba(255, 140, 66, 0.1);
  --shadow-md: 0 4px 16px rgba(255, 140, 66, 0.15);
  --shadow-lg: 0 8px 32px rgba(255, 140, 66, 0.2);
}

[data-theme="dark"] {
  /* Dark Theme Colors */
  --primary-color: #ff8c42;
  --primary-light: #ffb380;
  --primary-dark: #e67a2e;
  --secondary-color: #4a3428;
  --accent-color: #ff6b35;

  --bg-color: #1a1a1a;
  --surface-color: #2d2d2d;
  --text-primary: #f5f5f5;
  --text-secondary: #b8b8b8;
  --border-color: #3d3d3d;

  --glass-bg: rgba(45, 45, 45, 0.7);
  --glass-border: rgba(255, 140, 66, 0.3);

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
}

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

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--bg-color);
  color: var(--text-primary);
  line-height: 1.6;
  transition: background-color 0.4s ease, color 0.4s ease;
}

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

/* Header with Glass Effect */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--glass-border);
  transition: all 0.4s ease;
}

.header.scrolled {
  box-shadow: var(--shadow-md);
  background: var(--glass-bg);
}

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

.logo img {
  height: 80px;
  width: auto;
  transition: transform 0.3s ease;
}

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

.nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

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

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

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color);
}

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

.header-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Language Switcher */
.language-switcher {
  display: flex;
  gap: 0.5rem;
  background: var(--surface-color);
  border-radius: 20px;
  padding: 4px;
  border: 1px solid var(--border-color);
}

.lang-btn {
  padding: 0.4rem 0.8rem;
  border: none;
  background: transparent;
  color: var(--text-secondary);
  font-weight: 500;
  cursor: pointer;
  border-radius: 16px;
  transition: all 0.3s ease;
}

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

.lang-btn:hover:not(.active) {
  color: var(--primary-color);
}

/* Theme Toggle */
.theme-toggle {
  position: relative;
  width: 50px;
  height: 50px;
  border: none;
  background: var(--surface-color);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.theme-toggle:hover {
  background: var(--primary-light);
  transform: scale(1.1);
}

.theme-toggle i {
  position: absolute;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.theme-toggle .fa-sun {
  opacity: 1;
  transform: rotate(0deg);
  color: var(--primary-color);
}

.theme-toggle .fa-moon {
  opacity: 0;
  transform: rotate(180deg);
  color: var(--primary-color);
}

[data-theme="dark"] .theme-toggle .fa-sun {
  opacity: 0;
  transform: rotate(180deg);
}

[data-theme="dark"] .theme-toggle .fa-moon {
  opacity: 1;
  transform: rotate(0deg);
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-toggle span {
  width: 25px;
  height: 3px;
  background: var(--text-primary);
  transition: all 0.3s ease;
  border-radius: 2px;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(43, 43, 43, 0.897), rgba(43, 42, 42, 0.829));
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  text-align: center;
  color: white;
  z-index: 1;
  animation: fadeInUp 1s ease;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease 0.2s both;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2.5rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease 0.4s both;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.6s both;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

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

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

.btn-secondary {
  background: transparent;
  color: white;
  border-color: white;
}

.btn-secondary:hover {
  background: white;
  color: var(--primary-color);
  transform: translateY(-3px);
}

/* Sections */
.section {
  padding: 5rem 0;
  animation: fadeIn 0.8s ease;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--text-primary);
  animation: fadeInUp 0.8s ease;
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  animation: fadeInUp 0.8s ease 0.2s both;
}

/* Goals Grid */
.goals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.goal-card {
  background: var(--surface-color);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s ease;
  border: 1px solid var(--border-color);
  animation: fadeInUp 0.8s ease;
}

.goal-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.goal-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.4s ease;
}

.goal-card:hover .goal-icon {
  transform: scale(1.1) rotate(5deg);
}

.goal-icon i {
  font-size: 2rem;
  color: white;
}

.goal-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.goal-card p {
  color: var(--text-secondary);
  line-height: 1.8;
}

/* Advantages Section */
.advantages-section {
  background: var(--surface-color);
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.advantage-card {
  background: var(--bg-color);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s ease;
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.8s ease;
}

.advantage-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.advantage-card:hover::before {
  transform: scaleX(1);
}

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

.advantage-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-light);
  opacity: 0.3;
  margin-bottom: 1rem;
  transition: all 0.4s ease;
}

.advantage-card:hover .advantage-number {
  opacity: 0.6;
  transform: scale(1.1);
}

.advantage-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.advantage-card p {
  color: var(--text-secondary);
  line-height: 1.8;
}

/* Process Timeline */
.process-timeline {
  max-width: 800px;
  margin: 3rem auto;
  position: relative;
}

.process-timeline::before {
  content: "";
  position: absolute;
  left: 35px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--primary-light);
}

.process-step {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
  animation: fadeInLeft 0.8s ease;
}

.process-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
  transition: all 0.4s ease;
  z-index: 1;
}

.process-step:hover .process-icon {
  transform: scale(1.15) rotate(10deg);
}

.process-icon i {
  font-size: 1.8rem;
  color: white;
}

.process-content {
  background: var(--surface-color);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: var(--shadow-sm);
  flex: 1;
  transition: all 0.4s ease;
  border: 1px solid var(--border-color);
}

.process-step:hover .process-content {
  transform: translateX(10px);
  box-shadow: var(--shadow-md);
}

.process-content h3 {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  color: var(--text-primary);
}

.process-content p {
  color: var(--text-secondary);
  line-height: 1.8;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  padding: 5rem 0;
  text-align: center;
  animation: fadeIn 0.8s ease;
}

.cta-content h2 {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 1rem;
  animation: fadeInUp 0.8s ease;
}

.cta-content p {
  font-size: 1.3rem;
  color: white;
  margin-bottom: 2rem;
  opacity: 0.95;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.cta-content .btn {
  animation: fadeInUp 0.8s ease 0.4s both;
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  padding: 8rem 0 4rem;
  text-align: center;
  color: white;
  margin-top: 70px;
  animation: fadeIn 0.8s ease;
}

.page-header h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  animation: fadeInUp 0.8s ease;
}

.page-header p {
  font-size: 1.3rem;
  opacity: 0.95;
  animation: fadeInUp 0.8s ease 0.2s both;
}

/* About Content */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
}

.about-text h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  animation: fadeInLeft 0.8s ease;
}

.about-text p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  animation: fadeInLeft 0.8s ease 0.2s both;
}

.about-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  animation: fadeInRight 0.8s ease;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

/* Mission Section */
.mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.mission-card {
  background: var(--surface-color);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: all 0.4s ease;
  border: 1px solid var(--border-color);
  animation: fadeInUp 0.8s ease;
}

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

.mission-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.4s ease;
}

.mission-card:hover .mission-icon {
  transform: scale(1.1) rotate(10deg);
}

.mission-icon i {
  font-size: 2.2rem;
  color: white;
}

.mission-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.mission-card p {
  color: var(--text-secondary);
  line-height: 1.8;
}

/* Stats Section */
.stats-section {
  background: var(--surface-color);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.stat-card {
  text-align: center;
  padding: 2rem;
  background: var(--bg-color);
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s ease;
  border: 1px solid var(--border-color);
  animation: fadeInUp 0.8s ease;
}

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  transition: all 0.4s ease;
}

.stat-card:hover .stat-number {
  transform: scale(1.1);
}

.stat-label {
  font-size: 1.1rem;
  color: var(--text-secondary);
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--surface-color);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s ease;
  border: 1px solid var(--border-color);
  animation: fadeInUp 0.8s ease;
}

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

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.4s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(10deg);
}

.service-icon i {
  font-size: 2rem;
  color: white;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.service-card p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  padding: 0;
}

.service-features li {
  padding: 0.5rem 0;
  color: var(--text-secondary);
  position: relative;
  padding-left: 1.5rem;
}

.service-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 700;
}

/* Contact Content */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  margin-top: 3rem;
}

.contact-info h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
  animation: fadeInLeft 0.8s ease;
}

.contact-info p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.8;
  animation: fadeInLeft 0.8s ease 0.2s both;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  animation: fadeInLeft 0.8s ease;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
  transform: scale(1.1) rotate(10deg);
}

.contact-icon i {
  color: white;
  font-size: 1.2rem;
}

.contact-item h4 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
  color: var(--text-primary);
}

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

/* Contact Form */
.contact-form-wrapper {
  background: var(--surface-color);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  animation: fadeInRight 0.8s ease;
}

.contact-form-wrapper h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--text-primary);
}

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  background: var(--bg-color);
  color: var(--text-primary);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(255, 140, 66, 0.1);
}

.contact-form button {
  width: 100%;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

/* Privacy Content */
.privacy-text {
  max-width: 900px;
  margin: 0 auto;
  animation: fadeIn 0.8s ease;
}

.privacy-text h2 {
  font-size: 1.8rem;
  margin: 2.5rem 0 1rem;
  color: var(--text-primary);
}

.privacy-text p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.privacy-text ul {
  margin: 1rem 0 1.5rem 2rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.privacy-text li {
  margin-bottom: 0.5rem;
}

/* Footer */
.footer {
  background: var(--surface-color);
  padding: 3rem 0 1.5rem;
  border-top: 1px solid var(--border-color);
}

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

.footer-section h3,
.footer-section h4 {
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.footer-section p {
  color: var(--text-secondary);
  line-height: 1.8;
}

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

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

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-contacts li {
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.footer-contacts i {
  color: var(--primary-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  color: var(--text-secondary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 2rem;
    transition: left 0.3s ease;
    border-right: 1px solid var(--glass-border);
  }

  .nav.active {
    left: 0;
  }

  .mobile-toggle {
    display: flex;
  }

  .mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }

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

  .mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

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

  .about-intro,
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .goals-grid,
  .advantages-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .process-timeline::before {
    left: 20px;
  }

  .process-icon {
    width: 50px;
    height: 50px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
