/* Base Variables & Reset */
:root {
  /* Триадная цветовая схема */
  --primary-color: #ff6b6b;
  --secondary-color: #4ecdc4;
  --tertiary-color: #7367f0;
  
  /* Вариации цветов */
  --primary-dark: #e84545;
  --secondary-dark: #38b2ab;
  --tertiary-dark: #584cd7;
  
  /* Нейтральные цвета */
  --dark: #292929;
  --medium-dark: #505050;
  --medium: #888888;
  --light-medium: #cccccc;
  --light: #f5f5f5;
  
  /* Тени и эффекты */
  --box-shadow: 5px 5px 0px rgba(0, 0, 0, 0.8);
  --hover-shadow: 8px 8px 0px rgba(0, 0, 0, 0.85);
  --text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.5);
  
  /* Типографика */
  --heading-font: 'Raleway', sans-serif;
  --body-font: 'Open Sans', sans-serif;
  
  /* Размеры и радиусы */
  --border-radius: 4px;
  --border-radius-large: 12px;
  --container-width: 1200px;
  --section-spacing: 80px;
  --card-spacing: 30px;
}

header {
  max-width: 100vw;
}

html {
  overflow-x: hidden;
}

/* Общий сброс стилей */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  color: var(--dark);
  line-height: 1.6;
  background-color: var(--light);
  overflow-x: hidden;
}

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

ul, ol {
  list-style-position: inside;
}

a {
  text-decoration: none;
  color: var(--tertiary-color);
  transition: all 0.3s ease;
}

a:hover {
  color: var(--tertiary-dark);
  transform: translateY(-2px);
}

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

h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}

h2:after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--primary-color);
  margin: 0.8rem auto 0;
}

h3 {
  font-size: 1.8rem;
}

p {
  margin-bottom: 1.2rem;
}

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

section {
  padding: 60px 0;
  position: relative;
}

.section-description {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  color: var(--medium-dark);
}

/* Buttons */
.btn,
button,
input[type="submit"] {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  font-family: var(--heading-font);
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--border-radius);
  border: 2px solid var(--primary-color);
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  box-shadow: var(--box-shadow);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.btn:hover,
button:hover,
input[type="submit"]:hover {
  transform: translate(-3px, -3px);
  box-shadow: var(--hover-shadow);
}

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

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

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

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

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

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--dark);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  padding: 15px 0;
}

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

.logo a {
  display: block;
  color: white;
  font-weight: 700;
}

.logo h1 {
  font-size: 1.8rem;
  margin: 0;
  color: white;
}

.desktop-nav ul {
  display: flex;
  list-style: none;
  gap: 25px;
}

.desktop-nav a {
  color: white;
  font-weight: 600;
  font-size: 1rem;
  padding: 5px 0;
  position: relative;
}

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

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

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

.mobile-menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: white;
  border-radius: 3px;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  background-color: var(--dark);
  padding: 20px;
  z-index: 999;
}

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

.mobile-nav li {
  margin-bottom: 15px;
}

.mobile-nav a {
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
  display: block;
  padding: 8px 0;
}

.mobile-nav.active {
  display: block;
}

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

.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
  color: #FFFFFF;
  text-shadow: var(--text-shadow);
  animation: fadeInDown 1s ease-out;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #FFFFFF;
  text-shadow: var(--text-shadow);
  animation: fadeInUp 1s ease-out 0.3s forwards;
  opacity: 0;
}

.hero h2:after {
  display: none;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  color: #FFFFFF;
  text-shadow: var(--text-shadow);
  animation: fadeInUp 1s ease-out 0.6s forwards;
  opacity: 0;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  animation: fadeInUp 1s ease-out 0.9s forwards;
  opacity: 0;
}

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

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

.card {
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card:hover {
  transform: translate(-5px, -5px);
  box-shadow: var(--hover-shadow);
}

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

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

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

.card-content {
  padding: 25px;
  text-align: center;
  flex: 1;
}

.card h3 {
  margin-bottom: 15px;
  color: var(--dark);
}

.card p {
  color: var(--medium-dark);
  margin-bottom: 20px;
}

/* Pricing Section */
.pricing {
  background-color: var(--light);
  position: relative;
  overflow: hidden;
}

.pricing:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('image/pricing-bg.jpg') center/cover no-repeat;
  opacity: 0.05;
  z-index: 0;
}

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

.pricing-card {
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

.pricing-card.featured {
  transform: scale(1.05);
  border: 3px solid var(--primary-color);
  z-index: 2;
}

.pricing-card.featured:hover {
  transform: scale(1.05) translate(-5px, -5px);
}

.pricing-card:hover {
  transform: translate(-5px, -5px);
  box-shadow: var(--hover-shadow);
}

.pricing-header {
  background-color: var(--dark);
  color: white;
  padding: 25px;
  text-align: center;
}

.pricing-header h3 {
  color: white;
  margin-bottom: 10px;
}

.price {
  font-size: 2.5rem;
  font-weight: 700;
  font-family: var(--heading-font);
  color: var(--primary-color);
}

.pricing-content {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pricing-content ul {
  list-style: none;
  margin-bottom: 25px;
}

.pricing-content li {
  margin-bottom: 15px;
  padding-left: 25px;
  position: relative;
}

.pricing-content li:before {
  content: '✓';
  color: var(--primary-color);
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
}

/* Instructors/Team Section */
.instructors {
  background-color: var(--light);
}

.instructors-carousel {
  position: relative;
  margin: 40px 0;
  overflow: hidden;
}

.carousel-container {
  overflow: hidden;
  padding: 20px 0;
}

.carousel-track {
  display: flex;
  gap: 30px;
  transition: transform 0.5s ease;
}

.carousel-track .card {
  min-width: 300px;
  max-width: 300px;
  margin-bottom: 20px;
}

.carousel-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.position {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

/* Webinars Section */
.webinars {
  background-color: var(--dark);
  color: white;
}

.webinars h2, 
.webinars h3 {
  color: white;
}

.webinars .section-description {
  color: var(--light-medium);
}

.webinars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.webinars .card {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.webinars .card-content {
  text-align: center;
}

.webinars h3 {
  color: white;
}

.webinars p {
  color: var(--light-medium);
}

.date {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 15px;
}

/* Resources Section */
.resources {
  background-color: var(--light);
  position: relative;
  z-index: 1;
}

.resources:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  opacity: 0.05;
  z-index: -1;
}

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

.resource-card {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 25px;
  box-shadow: var(--box-shadow);
  transition: transform 0.3s ease;
  text-align: center;
}

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

.resource-card h3 {
  margin-bottom: 15px;
  color: var(--dark);
}

.resource-card p {
  margin-bottom: 20px;
  color: var(--medium-dark);
}

.resource-card a {
  display: inline-block;
  color: var(--tertiary-color);
  font-weight: 600;
  position: relative;
  padding-bottom: 5px;
}

.resource-card a:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--tertiary-color);
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.3s ease;
}

.resource-card a:hover:after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

/* Community Section */
.community {
  background-color: var(--light);
}

.community-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.gallery {
  flex: 1;
  min-width: 300px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 15px;
}

.gallery-item {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: transform 0.3s ease;
  height: 150px;
}

.gallery-item:hover {
  transform: scale(1.05);
  z-index: 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.community-join {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.social-links {
  margin-bottom: 30px;
  display: flex;
  gap: 15px;
}

.social-links a {
  display: inline-block;
  background-color: var(--tertiary-color);
  color: white;
  padding: 10px 15px;
  border-radius: var(--border-radius);
  font-weight: 600;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: var(--tertiary-dark);
  transform: translateY(-3px);
}

.newsletter {
  margin-top: 30px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 15px;
  border: 2px solid var(--medium);
  border-radius: var(--border-radius);
  font-family: var(--body-font);
}

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

/* Awards Section */
.awards {
  background-color: var(--dark);
  color: white;
}

.awards h2,
.awards h3 {
  color: white;
}

.awards .section-description {
  color: var(--light-medium);
}

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

.award-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.award-card:hover {
  transform: translate(-5px, -5px);
  box-shadow: var(--hover-shadow);
}

.award-image {
  width: 150px;
  height: 150px;
  margin: 30px auto;
  position: relative;
}

.award-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.award-content {
  padding: 25px;
  text-align: center;
  flex: 1;
}

.award-content h3 {
  color: var(--primary-color);
}

.award-content p {
  color: var(--light-medium);
}

/* Careers Section */
.careers {
  background-color: var(--light);
}

.careers-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.careers-image {
  flex: 1;
  min-width: 300px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.careers-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

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

.careers-info {
  flex: 1;
  min-width: 300px;
}

.careers-info h3 {
  margin-top: 0;
  margin-bottom: 20px;
}

.careers-info ul {
  list-style: none;
  margin-bottom: 30px;
}

.careers-info li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.careers-info li:before {
  content: '✓';
  color: var(--primary-color);
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
}

.job-listing {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: var(--box-shadow);
}

.job-listing h4 {
  margin-top: 0;
  color: var(--primary-color);
}

.job-listing p {
  margin-bottom: 15px;
}

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

.contact:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('image/contact-bg.jpg') center/cover no-repeat;
  opacity: 0.05;
  z-index: 0;
}

.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.contact-info {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-details, 
.service-areas {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 25px;
  box-shadow: var(--box-shadow);
}

.contact-details ul,
.service-areas ul {
  list-style: none;
}

.contact-details li,
.service-areas li {
  margin-bottom: 15px;
}

.contact-details a {
  color: var(--tertiary-color);
  font-weight: 600;
}

.service-areas li {
  padding-left: 20px;
  position: relative;
}

.service-areas li:before {
  content: '•';
  color: var(--primary-color);
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
}

.contact-form-container {
  flex: 1;
  min-width: 350px;
  background-color: white;
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--box-shadow);
}

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

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

.form-group label {
  font-weight: 600;
  color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 15px;
  border: 2px solid var(--medium);
  border-radius: var(--border-radius);
  font-family: var(--body-font);
  resize: none;
}

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

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

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  flex: 1;
  min-width: 250px;
  max-width: 350px;
}

.footer-logo h2 {
  color: white;
  text-align: left;
  margin-bottom: 10px;
}

.footer-logo h2:after {
  margin: 0.8rem 0 0;
}

.footer-links {
  flex: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-nav,
.footer-legal,
.footer-social {
  flex: 1;
  min-width: 150px;
}

.footer h3 {
  color: white;
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.footer-nav ul,
.footer-legal ul,
.footer-social ul {
  list-style: none;
}

.footer-nav li,
.footer-legal li,
.footer-social li {
  margin-bottom: 10px;
}

.footer-nav a,
.footer-legal a,
.footer-social a {
  color: var(--light-medium);
  transition: color 0.3s ease;
}

.footer-nav a:hover,
.footer-legal a:hover,
.footer-social a:hover {
  color: var(--primary-color);
}

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

/* Success Page */
.success-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 50px 20px;
}

.success-content {
  max-width: 600px;
  background-color: white;
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.success-content h1 {
  color: var(--primary-color);
}

.success-icon {
  font-size: 5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

/* Privacy & Terms Pages */
.privacy-page,
.terms-page {
  padding-top: 100px; /* Для отступа от хедера */
}

.privacy-content,
.terms-content {
  background-color: white;
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  margin-bottom: 40px;
}

/* About Page */
.about-page {
  padding-top: 100px;
}

.about-hero {
  height: 50vh;
  min-height: 400px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 60px;
}

.about-hero:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('image/about-hero.jpg') center/cover no-repeat;
  z-index: -1;
}

.about-hero h1 {
  color: white;
  text-shadow: var(--text-shadow);
}

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

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes rotate3D {
  0% {
    transform: perspective(1000px) rotateY(0deg);
  }
  100% {
    transform: perspective(1000px) rotateY(360deg);
  }
}

/* 3D Effects for Cards */
.card, 
.pricing-card, 
.award-card, 
.resource-card {
  transform-style: preserve-3d;
  perspective: 1000px;
}

.card:hover .card-image img, 
.award-card:hover .award-image img {
  transform: translateZ(20px) scale(1.05);
}

.card-content, 
.pricing-content, 
.award-content {
  transform: translateZ(10px);
}

/* Responsive Design */
@media (max-width: 992px) {
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2.2rem;
  }
  
  .hero h1 {
    font-size: 3.2rem;
  }
  
  .hero h2 {
    font-size: 2rem;
  }
  
  .carousel-track .card {
    min-width: 250px;
  }
}

@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero h2 {
    font-size: 1.8rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  .section-description {
    font-size: 1rem;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 30px;
  }
  
  .footer-logo,
  .footer-links {
    max-width: 100%;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .contact-form-container {
    min-width: 100%;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  .services-grid,
  .pricing-grid,
  .webinars-grid,
  .resources-grid,
  .awards-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .carousel-track .card {
    min-width: 100%;
  }
  
  .pricing-card.featured {
    transform: none;
  }
  
  .pricing-card.featured:hover {
    transform: translate(-5px, -5px);
  }
}

/* Cookie Consent Styling */
#cookie-consent {
  border-top: 3px solid var(--primary-color);
}

#accept-cookies {
  background-color: var(--primary-color);
  border: none;
  color: white;
  padding: 8px 15px;
  font-weight: 600;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: all 0.3s ease;
}

#accept-cookies:hover {
  background-color: var(--primary-dark);
}