/********** Template CSS **********/
:root {
  --primary: #6366f1;
  --primary-light: #818cf8;
  --primary-dark: #4f46e5;
  --secondary: #f59e0b;
  --secondary-light: #fbbf24;
  --secondary-dark: #d97706;
  --accent: #10b981;
  --accent-light: #34d399;
  --accent-dark: #059669;
  --success: #22c55e;
  --warning: #f59e0b;
  --danger: #ef4444;
  --info: #3b82f6;
  
  --light: #f8fafc;
  --dark: #1e293b;
  --dark-bg: #0f172a;
  --light-bg: #f1f5f9;
  --white: #ffffff;
  
  --text-primary: #1e293b;
  --text-secondary: #64748b;
  --text-muted: #94a3b8;
  
  --border-light: #e2e8f0;
  --border-dark: #cbd5e1;
  
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  
  --header-height: 80px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  
  --border-radius: 12px;
  --border-radius-lg: 16px;
  --border-radius-xl: 24px;
}

/* Typography */
* {
  font-family: 'Lora', serif;
}

body {
  font-family: 'Lora', serif;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Lora', serif;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-primary);
}

.fw-medium {
  font-weight: 500 !important;
}

.fw-semi-bold {
  font-weight: 600 !important;
}

.fw-bold {
  font-weight: 700 !important;
}

/* Back to top button */
.back-to-top {
  position: fixed;
  display: none;
  right: 45px;
  bottom: 45px;
  z-index: 99;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

/* Spinner */
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/* Buttons */
.btn {
  font-family: 'Lora', serif;
  font-weight: 500;
  text-transform: none;
  transition: var(--transition);
  border-radius: var(--border-radius);
  padding: 12px 24px;
  font-size: 16px;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border: none;
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: var(--white);
}

.btn-outline-primary {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}

.btn-outline-primary:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-secondary {
  border: 2px solid var(--text-secondary);
  color: var(--text-secondary);
  background: transparent;
}

.btn-outline-secondary:hover {
  background: var(--text-secondary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 18px;
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
  border-radius: 50%;
}

/* Header */
.site-header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-bottom: 1px solid var(--border-light);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-md);
}

.site-logo {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  position: relative;
  transition: var(--transition);
}

.site-logo:hover {
  color: var(--primary-dark);
  transform: scale(1.05);
}

.nav-link {
  color: var(--text-primary);
  font-weight: 500;
  padding: 12px 20px !important;
  transition: var(--transition);
  position: relative;
  border-radius: var(--border-radius);
  margin: 0 4px;
}

.nav-link:hover,
.nav-link:focus,
.nav-link.active {
  color: var(--primary);
  background-color: rgba(99, 102, 241, 0.1);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: var(--transition);
  transform: translateX(-50%);
  border-radius: 1px;
}

.nav-link:hover::after,
.nav-link:focus::after,
.nav-link.active::after {
  width: 60%;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--light), var(--white));
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(16, 185, 129, 0.05));
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  background: linear-gradient(135deg, var(--text-primary), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  font-weight: 400;
  max-width: 600px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-buttons .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-buttons .material-icons {
  font-size: 20px;
}

.highlight {
  color: var(--primary);
  position: relative;
}

.hero-image-container {
  position: relative;
  z-index: 2;
}

.hero-pattern {
  position: absolute;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, var(--primary-light), var(--accent-light));
  border-radius: 50%;
  top: -30px;
  left: -30px;
  z-index: -1;
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

.hero-image {
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-xl);
  position: relative;
  z-index: 2;
  transition: var(--transition);
}

.hero-image:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl), 0 0 30px rgba(99, 102, 241, 0.3);
}

/* About Section */
.about-section {
  padding: 100px 0;
  position: relative;
  background: var(--white);
}

.about-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(16, 185, 129, 0.05));
  clip-path: polygon(0 100%, 100% 100%, 100% 30%, 0 70%);
  z-index: 1;
}

.about-content {
  position: relative;
  z-index: 2;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
  background: linear-gradient(135deg, var(--text-primary), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
}

.lead {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
}

.about-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  padding: 2rem;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-light);
}

.about-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-light);
}

.about-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary), var(--accent));
  transition: var(--transition);
}

.about-card:hover::before {
  width: 6px;
}

.about-card-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  color: var(--primary);
  opacity: 0.2;
  font-size: 3rem;
  transition: var(--transition);
}

.about-card:hover .about-card-icon {
  opacity: 0.4;
  transform: scale(1.1);
}

.about-card-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color: var(--text-primary);
}

.about-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Services Section */
.services-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--light), var(--white));
  position: relative;
}

.services-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, var(--primary-light), var(--accent-light));
  border-radius: 50%;
  z-index: 1;
  opacity: 0.1;
}

.services-section::after {
  content: "";
  position: absolute;
  bottom: 50px;
  left: 50px;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--accent-light), var(--secondary-light));
  border-radius: 50%;
  z-index: 1;
  opacity: 0.1;
}

.service-card {
  border-radius: var(--border-radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  height: 100%;
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid var(--border-light);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-light);
}

.service-card.featured {
  border: 2px solid var(--primary);
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}

.service-card.featured:hover {
  transform: scale(1.02) translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.service-card-header {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
  position: relative;
}

.service-card-header h3 {
  margin: 0;
  font-size: 1.5rem;
  color: var(--white);
  font-weight: 600;
}

.service-number {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.2);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.2rem;
  backdrop-filter: blur(10px);
}

.service-card-body {
  padding: 2rem;
}

.service-feature {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.service-feature:hover {
  transform: translateX(5px);
}

.service-feature-icon {
  color: var(--primary);
  margin-right: 1rem;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.service-feature-text h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
  font-weight: 600;
}

.service-feature-text p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.service-cta {
  margin-top: 2rem;
  text-align: center;
}

/* Testimonials Section */
.testimonials-section {
  padding: 100px 0;
  background: var(--white);
  position: relative;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  position: relative;
  transition: var(--transition);
  height: 100%;
  margin: 1rem 0;
  border: 1px solid var(--border-light);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-light);
}

.testimonial-quote {
  font-size: 3rem;
  color: var(--primary);
  opacity: 0.2;
  position: absolute;
  top: 20px;
  left: 20px;
  font-family: serif;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
  color: var(--text-primary);
}

.testimonial-author {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.testimonial-author-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 1rem;
  border: 3px solid var(--primary);
  transition: var(--transition);
}

.testimonial-card:hover .testimonial-author-img {
  border-color: var(--accent);
  transform: scale(1.05);
}

.testimonial-author-name {
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--text-primary);
}

.testimonial-author-title {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.testimonial-rating {
  display: flex;
  margin-bottom: 1rem;
}

.rating-star {
  color: var(--secondary);
  margin-right: 0.25rem;
  transition: var(--transition);
}

.testimonial-card:hover .rating-star {
  color: var(--secondary-dark);
  transform: scale(1.1);
}

/* Pricing Section */
.pricing-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--light), var(--white));
  position: relative;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
  position: relative;
  z-index: 2;
  border: 1px solid var(--border-light);
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-light);
}

.pricing-card.featured {
  border: 2px solid var(--primary);
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.pricing-header {
  padding: 2rem;
  text-align: center;
  position: relative;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
}

.pricing-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.pricing-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.pricing-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  margin: 1.5rem 0 1rem;
}

.pricing-price span {
  font-size: 1rem;
  font-weight: 400;
  opacity: 0.8;
}

.pricing-features {
  padding: 2rem;
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.pricing-feature:hover {
  transform: translateX(5px);
}

.pricing-feature:last-child {
  margin-bottom: 0;
}

.pricing-feature-icon {
  color: var(--primary);
  margin-right: 1rem;
  flex-shrink: 0;
}

.pricing-cta {
  padding: 0 2rem 2rem;
  text-align: center;
}

.pricing-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--secondary);
  color: var(--white);
  font-size: 0.8rem;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 500;
  z-index: 2;
}

/* Contact Section */
.contact-section {
  padding: 100px 0;
  background: var(--white);
  position: relative;
}

.form-container {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.form-container:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-light);
}

.form-title {
  margin-bottom: 2rem;
  font-size: 1.5rem;
  font-weight: 600;
  position: relative;
  padding-bottom: 1rem;
  color: var(--text-primary);
}

.form-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
}

.form-floating {
  margin-bottom: 1.5rem;
}

.form-control {
  border: 2px solid var(--border-light);
  padding: 1rem 1.25rem;
  height: auto;
  font-size: 1rem;
  border-radius: var(--border-radius);
  transition: var(--transition);
  background: var(--white);
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.25rem rgba(99, 102, 241, 0.25);
  outline: none;
}

/* Footer */
.footer {
  padding-top: 4rem;
  background: linear-gradient(135deg, var(--dark-bg), var(--text-primary));
  position: relative;
  color: var(--white);
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, var(--primary), var(--accent));
}

.footer .brand-link {
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  position: relative;
  display: inline-block;
  transition: var(--transition);
}

.footer .brand-link:hover {
  color: var(--primary-light);
  transform: translateX(5px);
}

.footer .btn-link {
  display: block;
  text-align: left;
  color: var(--text-muted);
  text-decoration: none;
  padding: 0.5rem 0;
  transition: var(--transition);
  position: relative;
  padding-left: 0;
  border: none;
  background: none;
}

.footer .btn-link:hover {
  color: var(--primary-light);
  transform: translateX(5px);
}

.footer .contact-email {
  color: var(--text-muted);
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  transition: var(--transition);
  cursor: pointer;
  margin-top: 1rem;
}

.footer .contact-email:hover {
  transform: translateX(5px);
  color: var(--primary-light);
}

.footer .contact-email .material-icons {
  margin-right: 0.5rem;
  font-size: 18px;
}

.footer .copyright {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
  color: var(--text-muted);
}

.footer_links {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Cookie Banner */
.cookie-wrapper {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 400px;
  background: var(--white);
  padding: 1.5rem;
  transition: var(--transition);
  box-shadow: var(--shadow-xl);
  z-index: 999;
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--border-light);
  display: none; /* По умолчанию скрыт */
}

.cookie-wrapper > div:first-child {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.cookie-wrapper h2 {
  margin: 0;
  font-size: 1.25rem;
  color: var(--text-primary);
}

.cookie-wrapper .material-icons {
  color: var(--primary);
  font-size: 24px;
}

.cookie-wrapper .data {
  margin-bottom: 1.5rem;
}

.cookie-wrapper .data p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.5;
}

.cookie-wrapper .data a {
  color: var(--primary);
  text-decoration: none;
}

.cookie-wrapper .data a:hover {
  text-decoration: underline;
}

.cookie-wrapper .buttons {
  display: flex;
  gap: 1rem;
}

.cookie-button {
  border: 2px solid var(--primary);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  background: var(--primary);
  cursor: pointer;
  width: calc(50% - 0.5rem);
  transition: var(--transition);
  border-radius: var(--border-radius);
  font-family: 'Lora', serif;
  font-weight: 500;
}

.cookie-button:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
}

#declineBtn {
  background: transparent;
  color: var(--primary);
}

#declineBtn:hover {
  background: var(--primary);
  color: var(--white);
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .hero-section {
    padding: 120px 0 80px;
  }

  .hero-section::before {
    width: 100%;
    clip-path: polygon(0 80%, 100% 60%, 100% 100%, 0 100%);
    height: 50%;
    top: auto;
    bottom: 0;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-image-container {
    margin-top: 3rem;
  }

  .about-section,
  .services-section,
  .testimonials-section,
  .pricing-section,
  .contact-section {
    padding: 70px 0;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .about-card,
  .service-card,
  .testimonial-card,
  .pricing-card {
    margin-bottom: 2rem;
  }

  .pricing-card.featured {
    transform: scale(1);
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .pricing-card.featured:hover {
    transform: translateY(-10px);
  }

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 767.98px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-section {
    padding: 140px 0 80px;
  }

  .section-title {
    font-size: 2rem;
  }

  .about-card-title {
    font-size: 1.3rem;
  }

  .service-card-header h3 {
    font-size: 1.3rem;
  }

  .pricing-price {
    font-size: 2rem;
  }

  .pricing-title {
    font-size: 1.3rem;
  }

  .testimonial-card {
    margin-bottom: 2rem;
  }

  .form-container {
    padding: 2rem 1.5rem;
  }

  .cookie-wrapper {
    width: 100%;
    right: 0;
    bottom: 0;
    border-radius: 0;
  }

  .footer_links {
    flex-direction: column;
    gap: 0.5rem;
  }

  .site-header {
    padding: 0.5rem 0;
  }

  .nav-link {
    padding: 0.75rem 1rem !important;
    margin: 0.25rem 0;
  }
}

@media (max-width: 575.98px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .about-card,
  .service-card,
  .testimonial-card,
  .pricing-card {
    padding: 1.5rem;
  }

  .hero-buttons .btn {
    padding: 0.75rem 1.5rem;
    font-size: 14px;
  }
}

/* Animations */
@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);
  }
}

.wow {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.wow.fadeInUp {
  animation-name: fadeInUp;
}

.wow.fadeInLeft {
  animation-name: fadeInLeft;
}

.wow.fadeInRight {
  animation-name: fadeInRight;
}

/* Hover effects */
.about-card:hover,
.service-card:hover,
.testimonial-card:hover,
.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.nav-link:hover {
  transform: translateY(-1px);
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--light);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}