/* ==================== Variables & Base Styles ==================== */
:root {
  /* Tetrad Color Scheme */
  --primary-color: #3498db;
  --primary-dark: #2980b9;
  --primary-light: #5dade2;
  
  --secondary-color: #e74c3c;
  --secondary-dark: #c0392b;
  --secondary-light: #ec7063;
  
  --tertiary-color: #2ecc71;
  --tertiary-dark: #27ae60;
  --tertiary-light: #58d68d;
  
  --quaternary-color: #f39c12;
  --quaternary-dark: #d35400;
  --quaternary-light: #f8c471;
  
  /* Neutral Colors */
  --dark: #333333;
  --darker: #222222;
  --darkest: #111111;
  --light: #f5f5f5;
  --lighter: #ffffff;
  --medium: #888888;
  
  /* Shadows for Neumorphism */
  --shadow-light: 6px 6px 12px rgba(0,0,0,0.1);
  --shadow-dark: -6px -6px 12px rgba(255,255,255,0.8);
  --shadow-inset: inset 2px 2px 5px rgba(0,0,0,0.05), inset -2px -2px 5px rgba(255,255,255,0.5);
  
  /* Transitions */
  --transition-fast: 0.3s ease;
  --transition-medium: 0.5s ease;
  --transition-slow: 0.8s ease;
  
  /* Border Radius */
  --radius-small: 8px;
  --radius-medium: 12px;
  --radius-large: 20px;
  --radius-full: 50%;
}

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

html {
  scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto', sans-serif;
  margin-bottom: 1rem;
  color: var(--darker);
  font-weight: 700;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

p {
  margin-bottom: 1rem;
}

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: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-title {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 1rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--primary-color);
  border-radius: var(--radius-small);
}

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

/* ==================== Buttons ==================== */
.btn, button, input[type='submit'] {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius-medium);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  border: none;
  font-family: 'Lato', sans-serif;
  box-shadow: var(--shadow-light);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.7s ease;
}

.btn:hover::before {
  left: 100%;
}

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

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

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

.btn-secondary:hover {
  background-color: var(--secondary-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

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

.btn-tertiary:hover {
  background-color: var(--tertiary-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

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

.btn-quaternary:hover {
  background-color: var(--quaternary-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* ==================== Card Styles ==================== */
.card {
  background: var(--lighter);
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-light);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
  position: relative;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.card-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

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

.card-content {
  padding: 1.5rem;
  text-align: center;
  width: 100%;
}

.card-content h3 {
  margin-top: 0;
  font-size: 1.4rem;
  color: var(--dark);
}

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

/* ==================== Header & Navigation ==================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: all var(--transition-fast);
}

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

.logo {
  display: flex;
  align-items: center;
}

.logo h1 {
  font-size: 1.5rem;
  margin: 0;
  color: var(--primary-color);
  font-weight: 700;
}

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

.nav-desktop ul li {
  margin-left: 1.5rem;
}

.nav-desktop ul li a {
  font-weight: 600;
  color: var(--dark);
  position: relative;
  padding-bottom: 5px;
  transition: color var(--transition-fast);
}

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

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

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

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 30px;
  height: 3px;
  background-color: var(--dark);
  margin: 3px 0;
  border-radius: 5px;
  transition: all var(--transition-fast);
}

.nav-mobile {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: var(--lighter);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  transform: translateY(-10px);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
}

.nav-mobile.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

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

.nav-mobile ul li {
  padding: 0.8rem 1.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.nav-mobile ul li:last-child {
  border-bottom: none;
}

.nav-mobile ul li a {
  color: var(--dark);
  font-weight: 600;
  display: block;
}

@media (max-width: 991px) {
  .nav-desktop {
    display: none;
  }
  
  .hamburger {
    display: flex;
  }
  
  .hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
  
  .nav-mobile {
    display: block;
  }
}

/* ==================== Hero Section ==================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  margin-bottom: 3rem;
  overflow: hidden;
}

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

.hero .container {
  position: relative;
  z-index: 2;
  padding: 2rem;
}

.hero-content {
  max-width: 800px;
  animation: fadeIn 1s ease-out;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: white;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: white;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

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

/* ==================== Services Section ==================== */
.services {
  padding: 5rem 0;
  background-color: var(--light);
  position: relative;
}

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

/* ==================== Innovation Section ==================== */
.innovation {
  padding: 5rem 0;
  background-color: var(--lighter);
  position: relative;
  overflow: hidden;
}

.innovation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.innovation-image {
  border-radius: var(--radius-medium);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform var(--transition-medium);
}

.innovation-image:hover {
  transform: perspective(1000px) rotateY(0);
}

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

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

.innovation-content {
  padding: 2rem;
}

.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 4px;
  background: var(--primary-light);
  border-radius: var(--radius-small);
}

.timeline-item {
  position: relative;
  margin-bottom: 2rem;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -2.3rem;
  top: 0.5rem;
  width: 20px;
  height: 20px;
  background: var(--primary-color);
  border-radius: var(--radius-full);
  box-shadow: 0 0 0 4px rgba(52, 152, 219, 0.2);
  transition: background var(--transition-fast);
}

.timeline-item:hover .timeline-dot {
  background: var(--secondary-color);
  transform: scale(1.2);
}

.timeline-content {
  padding: 1rem 1.5rem;
  background: var(--lighter);
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-light);
  transition: transform var(--transition-fast);
}

.timeline-item:hover .timeline-content {
  transform: translateX(10px);
}

.timeline-content h3 {
  margin-top: 0;
  color: var(--primary-color);
}

@media (max-width: 768px) {
  .innovation-grid {
    grid-template-columns: 1fr;
  }
  
  .innovation-image {
    order: 1;
    margin-bottom: 2rem;
  }
  
  .innovation-content {
    order: 2;
    padding: 0;
  }
}

/* ==================== Vision Section ==================== */
.vision {
  position: relative;
  padding: 6rem 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: white;
}

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

.vision .container {
  position: relative;
  z-index: 2;
}

.vision-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.vision-content h2 {
  color: white;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.vision-content p {
  font-size: 1.1rem;
  color: white;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
  margin-bottom: 1.5rem;
}

/* ==================== Pricing Section ==================== */
.pricing {
  padding: 5rem 0;
  background-color: var(--light);
  position: relative;
}

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

.pricing .card {
  padding: 2rem 0;
  height: 100%;
}

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

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

.price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 1.5rem 0;
}

.price span {
  font-size: 1rem;
  color: var(--medium);
}

.pricing ul {
  list-style: none;
  margin: 2rem 0;
  padding: 0 1.5rem;
}

.pricing ul li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  position: relative;
}

.pricing ul li::before {
  content: '✓';
  color: var(--tertiary-color);
  margin-right: 8px;
  font-weight: bold;
}

/* ==================== Workshops Section ==================== */
.workshops {
  padding: 5rem 0;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
}

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

.workshops .container {
  position: relative;
  z-index: 2;
}

.workshops .section-title,
.workshops .section-description {
  color: white;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.workshops-carousel {
  position: relative;
  margin: 0 auto;
  max-width: 1000px;
}

.carousel-container {
  overflow: hidden;
  position: relative;
}

.carousel-track {
  display: flex;
  transition: transform var(--transition-medium);
}

.carousel-slide {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .carousel-slide {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 992px) {
  .carousel-slide {
    flex: 0 0 33.333%;
    max-width: 33.333%;
  }
}

.carousel-buttons {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.carousel-prev,
.carousel-next {
  background-color: var(--primary-color);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin: 0 0.5rem;
  border: none;
  font-size: 1.2rem;
  transition: all var(--transition-fast);
}

.carousel-prev:hover,
.carousel-next:hover {
  background-color: var(--primary-dark);
  transform: scale(1.1);
}

/* ==================== Resources Section ==================== */
.resources {
  padding: 5rem 0;
  background-color: var(--lighter);
}

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

/* ==================== Jobs Section ==================== */
.jobs {
  padding: 5rem 0;
  background-color: var(--light);
}

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

/* ==================== FAQ Section ==================== */
.faq {
  padding: 5rem 0;
  background-color: var(--lighter);
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 1rem;
  border-radius: var(--radius-medium);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  background-color: white;
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color var(--transition-fast);
}

.faq-question:hover {
  background-color: rgba(0,0,0,0.02);
}

.faq-question h3 {
  margin: 0;
  font-size: 1.2rem;
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--primary-color);
  transition: transform var(--transition-fast);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-medium), padding var(--transition-medium);
}

.faq-item.active .faq-answer {
  padding: 0 1.5rem 1.5rem;
  max-height: 1000px;
}

/* ==================== Testimonials Section ==================== */
.testimonials {
  padding: 5rem 0;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
}

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

.testimonials .container {
  position: relative;
  z-index: 2;
}

.testimonials .section-title,
.testimonials .section-description {
  color: white;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.testimonial-rating {
  color: var(--quaternary-color);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  margin-right: 1rem;
  border: 3px solid var(--primary-color);
}

.author-info h4 {
  margin: 0;
  color: var(--darker);
}

.author-info p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--medium);
}

/* ==================== Contact Section ==================== */
.contact {
  padding: 5rem 0;
  background-color: var(--light);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

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

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.animated-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-light);
  color: white;
  font-size: 1.5rem;
  border-radius: var(--radius-full);
  transition: transform var(--transition-fast);
}

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

.info-item h3 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
}

.info-item p {
  margin: 0;
  color: var(--dark);
}

.map-container {
  margin-top: 2rem;
  border-radius: var(--radius-medium);
  overflow: hidden;
  box-shadow: var(--shadow-light);
}

.contact-form {
  background-color: white;
  padding: 2rem;
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-light);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 2px solid rgba(0,0,0,0.1);
  border-radius: var(--radius-small);
  font-family: 'Lato', sans-serif;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  background-color: var(--light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.25);
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

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

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

.footer-column h3 {
  color: white;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.8rem;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--primary-color);
}

.footer-column p {
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
}

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

.footer-column ul li {
  margin-bottom: 0.8rem;
}

.footer-column ul li a {
  color: rgba(255,255,255,0.8);
  transition: color var(--transition-fast);
}

.footer-column ul li a:hover {
  color: var(--primary-light);
  padding-left: 5px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.social-links a {
  color: rgba(255,255,255,0.8);
  transition: color var(--transition-fast);
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-small);
  background-color: rgba(255,255,255,0.1);
}

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

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: rgba(255,255,255,0.6);
  margin: 0;
}

.footer-links {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

.footer-links a {
  color: rgba(255,255,255,0.6);
  transition: color var(--transition-fast);
}

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

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-links {
    justify-content: center;
  }
}

/* ==================== Static Pages ==================== */
.page-content {
  padding: 6rem 0;
}

.about-page,
.privacy-page,
.terms-page,
.contacts-page {
  padding-top: 100px;
}

/* ==================== Success Page ==================== */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.success-container {
  max-width: 600px;
  background-color: white;
  padding: 3rem;
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-light);
}

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

.success-title {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--tertiary-color);
}

.success-message {
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

/* ==================== Cookie Consent ==================== */
#cookieConsentPopup {
  border-radius: var(--radius-medium) var(--radius-medium) 0 0;
  box-shadow: 0 -5px 15px rgba(0,0,0,0.1);
}

#acceptCookies {
  border-radius: var(--radius-small);
  font-weight: 600;
  transition: background-color var(--transition-fast), transform var(--transition-fast);
}

#acceptCookies:hover {
  background-color: #3e8e41;
  transform: scale(1.05);
}

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

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

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

.animated-fade-in {
  animation: fadeInUp 1s ease-out;
}

.animated-pulse {
  animation: pulse 2s infinite;
}

.animated-float {
  animation: float 3s ease-in-out infinite;
}

/* ==================== Media Queries ==================== */
@media (max-width: 1200px) {
  .container {
    max-width: 992px;
  }
}

@media (max-width: 992px) {
  .container {
    max-width: 768px;
  }
  
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .services-grid,
  .resources-grid,
  .jobs-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .container {
    max-width: 576px;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.6rem;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-content p {
    font-size: 1.2rem;
  }
  
  .services-grid,
  .resources-grid,
  .jobs-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing .featured {
    transform: none;
  }
  
  .pricing .featured:hover {
    transform: translateY(-10px);
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 1rem;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-content p {
    font-size: 1.1rem;
  }
  
  .btn, button, input[type='submit'] {
    width: 100%;
    margin-bottom: 0.5rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* ==================== Utility Classes ==================== */
.text-center {
  text-align: center;
}

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

.text-right {
  text-align: right;
}

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.mb-5 {
  margin-bottom: 3rem;
}

.mt-1 {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 1.5rem;
}

.mt-4 {
  margin-top: 2rem;
}

.mt-5 {
  margin-top: 3rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.w-100 {
  width: 100%;
}

.hidden {
  display: none;
}

.visible {
  display: block;
}

/* Icon styles for animated icons */
.icon-location,
.icon-phone,
.icon-email,
.icon-clock {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.icon-location {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%233498db"><path d="M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z"/></svg>');
}

.icon-phone {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%233498db"><path d="M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z"/></svg>');
}

.icon-email {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%233498db"><path d="M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z"/></svg>');
}

.icon-clock {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%233498db"><path d="M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm.5-13H11v6l5.25 3.15.75-1.23-4.5-2.67z"/></svg>');
}

/* Read more link styles */
.read-more {
  display: inline-block;
  font-weight: 600;
  color: var(--primary-color);
  position: relative;
  padding-right: 20px;
  transition: all var(--transition-fast);
}

.read-more::after {
  content: '→';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: transform var(--transition-fast);
}

.read-more:hover {
  color: var(--primary-dark);
  padding-right: 25px;
}

.read-more:hover::after {
  transform: translate(5px, -50%);
}