:root {
  /* Color Palette */
  --primary-color: #5b37eb;
  --primary-dark: #4520d9;
  --primary-light: #8063f5;
  
  --secondary-color: #ff5b7f;
  --secondary-dark: #e04466;
  --secondary-light: #ff7a96;
  
  --accent-color: #42cdff;
  --accent-dark: #1ab2f0;
  --accent-light: #75e0ff;
  
  --dark-color: #2d2d3a;
  --dark-light: #444455;
  --light-color: #f8f9fa;
  --gray-color: #a9a9b3;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  --gradient-secondary: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  --gradient-accent: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
  --gradient-dark: linear-gradient(135deg, var(--dark-color), var(--dark-light));
  
  /* Overlay Gradient */
  --overlay-dark: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.4));
  --overlay-light: linear-gradient(to bottom, rgba(255,255,255,0.8), rgba(255,255,255,0.4));
  
  /* Typography */
  --font-heading: 'Archivo Black', sans-serif;
  --font-body: 'Roboto', sans-serif;
  
  /* Spacing */
  --section-padding: 6rem 0;
  --section-padding-sm: 4rem 0;
  
  /* Borders & Shadows */
  --border-radius: 8px;
  --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --hover-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Base Styles */
html {
  scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

p {
  margin-bottom: 1.5rem;
  color: var(--dark-light);
}

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

a:hover {
  color: var(--primary-dark);
  text-decoration: none;
}

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

/* Section Styles */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
  color: var(--dark-color);
}

.section-divider {
  width: 80px;
  height: 4px;
  background: var(--gradient-primary);
  margin: 0 auto 2rem;
  border-radius: 2px;
}

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

/* Buttons */
.btn, button, input[type='submit'] {
  display: inline-block;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn:after, button:after, input[type='submit']:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  transition: width 0.4s ease, height 0.4s ease;
}

.btn:hover:after, button:hover:after, input[type='submit']:hover:after {
  width: 300%;
  height: 300%;
}

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

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

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

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

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

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

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

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

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.15rem;
}

.btn-block {
  display: block;
  width: 100%;
}

/* Header */
.header {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.navbar {
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.navbar-brand img {
  transition: transform 0.3s ease;
}

.navbar-brand:hover img {
  transform: scale(1.05);
}

.navbar-nav {
  margin-left: auto;
}

.nav-item {
  margin: 0 0.5rem;
  position: relative;
}

.nav-link {
  color: var(--dark-color);
  font-weight: 500;
  padding: 0.5rem 1rem;
  position: relative;
}

.nav-link:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width 0.3s ease, left 0.3s ease;
}

.nav-link:hover:before {
  width: 100%;
  left: 0;
}

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

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 6rem 0;
  color: white;
}

.hero-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--overlay-dark);
  z-index: 0;
}

.hero-section .container {
  position: relative;
  z-index: 1;
}

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

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 1s ease 0.2s;
  animation-fill-mode: both;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  animation: fadeInUp 1s ease 0.4s;
  animation-fill-mode: both;
}

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

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

.about-image-container {
  overflow: hidden;
  border-radius: var(--border-radius);
  margin-bottom: 2rem;
}

.about-image-container img {
  transition: transform 0.5s ease;
}

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

.about-content {
  padding: 1rem;
}

.about-content h3 {
  color: var(--dark-color);
  margin-bottom: 1.5rem;
  position: relative;
}

.about-content h3:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 1.5px;
}

/* Statistics Section */
.statistics-section {
  padding: var(--section-padding);
  position: relative;
  color: white;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.statistics-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--overlay-dark);
  z-index: 0;
}

.statistics-section .container {
  position: relative;
  z-index: 1;
}

.statistics-section .section-title,
.statistics-section .section-divider {
  color: white;
}

.stat-box {
  text-align: center;
  padding: 2rem 1rem;
  margin-bottom: 2rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border-radius: var(--border-radius);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: var(--font-heading);
}

.stat-label {
  font-size: 1.2rem;
  color: white;
}

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

.service-card {
  height: 100%;
  border: none;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
}

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

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

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

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

.card-content {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

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

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

/* History Section */
.history-section {
  padding: var(--section-padding);
  background-color: #f9f9f9;
}

.history-image-container {
  border-radius: var(--border-radius);
  overflow: hidden;
  margin-bottom: 2rem;
}

.timeline {
  position: relative;
  padding: 2rem 0;
}

.timeline:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 15px;
  width: 3px;
  background: var(--gradient-primary);
  border-radius: 1.5px;
}

.timeline-item {
  position: relative;
  padding-left: 40px;
  margin-bottom: 2rem;
}

.timeline-marker {
  position: absolute;
  left: 0;
  top: 6px;
  width: 30px;
  height: 30px;
  background: white;
  border: 5px solid var(--primary-color);
  border-radius: 50%;
  z-index: 1;
}

.timeline-content {
  background: white;
  padding: 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
  animation: slideIn 0.5s ease both;
  opacity: 0;
  transform: translateX(20px);
}

.timeline-item:nth-child(1) .timeline-content {
  animation-delay: 0.1s;
}

.timeline-item:nth-child(2) .timeline-content {
  animation-delay: 0.2s;
}

.timeline-item:nth-child(3) .timeline-content {
  animation-delay: 0.3s;
}

.timeline-item:nth-child(4) .timeline-content {
  animation-delay: 0.4s;
}

.timeline-item:nth-child(5) .timeline-content {
  animation-delay: 0.5s;
}

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Testimonials Section */
.testimonials-section {
  padding: var(--section-padding);
  position: relative;
  color: white;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.testimonials-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--overlay-dark);
  z-index: 0;
}

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

.testimonial-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--border-radius);
  overflow: hidden;
  padding: 0;
  margin: 1rem;
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.testimonial-card .card-image {
  width: 100px;
  height: 100px;
  margin: -50px auto 1rem;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.testimonial-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-card .card-content {
  padding: 1.5rem 2rem 2rem;
  color: var(--dark-color);
}

.testimonial-stars {
  color: #ffc107;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  margin-bottom: 1.5rem;
  color: var(--dark-light);
  font-style: italic;
}

.testimonial-author {
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--dark-color);
}

.testimonial-position {
  color: var(--gray-color);
  margin-bottom: 0;
}

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

.testimonial-prev,
.testimonial-next {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  cursor: pointer;
  transition: background 0.3s ease;
}

.testimonial-prev:hover,
.testimonial-next:hover {
  background: rgba(255, 255, 255, 0.4);
}

/* Research Section */
.research-section {
  padding: var(--section-padding);
  background-color: var(--light-color);
}

.research-item {
  margin-bottom: 3rem;
}

.research-item img {
  width: 100%;
  border-radius: var(--border-radius);
  margin-bottom: 1.5rem;
}

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

.progress-container {
  margin-bottom: 1rem;
}

.progress-label {
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--dark-color);
}

.progress {
  height: 0.8rem;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 4px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: var(--gradient-primary);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.8rem;
  transition: width 1.5s ease;
}

/* Resources Section */
.resources-section {
  padding: var(--section-padding);
  position: relative;
  color: white;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.resources-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--overlay-dark);
  z-index: 0;
}

.resources-section .container {
  position: relative;
  z-index: 1;
}

.resource-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  padding: 2rem;
  border-radius: var(--border-radius);
  margin-bottom: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

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

.resource-card h3 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.resource-list {
  padding: 0;
  list-style: none;
}

.resource-list li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 20px;
}

.resource-list li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent-color);
}

.resource-list a {
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.3s ease;
}

.resource-list a:hover {
  color: var(--accent-light);
}

/* Why Us Section */
.why-us-section {
  padding: var(--section-padding);
  background-color: var(--light-color);
}

.why-us-item {
  text-align: center;
  margin-bottom: 3rem;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: white;
  height: 100%;
}

.why-us-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--hover-shadow);
}

.why-us-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: var(--gradient-primary);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.why-us-icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.why-us-item h3 {
  margin-bottom: 1rem;
  color: var(--dark-color);
}

.why-us-item p {
  color: var(--dark-light);
}

/* Success Stories Section */
.success-stories-section {
  padding: var(--section-padding);
  position: relative;
  color: white;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.success-stories-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--overlay-dark);
  z-index: 0;
}

.success-stories-section .container {
  position: relative;
  z-index: 1;
}

.success-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--border-radius);
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

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

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

.success-card .card-content {
  padding: 2rem;
  color: var(--dark-color);
  flex-grow: 1;
}

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

.success-card p {
  margin-bottom: 1rem;
  color: var(--dark-light);
}

/* FAQ Section */
.faq-section {
  padding: var(--section-padding);
  background-color: #f9f9f9;
}

.accordion-item {
  border: none;
  margin-bottom: 1rem;
  background: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

.accordion-button {
  font-weight: 600;
  color: var(--dark-color);
  background: white;
  box-shadow: none;
  padding: 1.5rem;
}

.accordion-button:not(.collapsed) {
  background-color: white;
  color: var(--primary-color);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.accordion-button::after {
  background-size: 1rem;
}

.accordion-body {
  padding: 0 1.5rem 1.5rem;
}

/* News Section */
.news-section {
  padding: var(--section-padding);
  background-color: var(--light-color);
}

.news-card {
  height: 100%;
  border: none;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.news-card .card-image {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

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

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

.news-date {
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--primary-color);
  color: white;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  border-top-right-radius: var(--border-radius);
}

.news-card .card-content {
  padding: 2rem;
  flex-grow: 1;
  text-align: center;
}

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

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

/* Pricing Section */
.pricing-section {
  padding: var(--section-padding);
  position: relative;
  color: white;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.pricing-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--overlay-dark);
  z-index: 0;
}

.pricing-section .container {
  position: relative;
  z-index: 1;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--border-radius);
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: var(--card-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

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

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

.pricing-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--accent-color);
  color: white;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  border-bottom-left-radius: var(--border-radius);
}

.pricing-header {
  padding: 2rem;
  background: var(--primary-color);
  color: white;
  text-align: center;
}

.pricing-header h3 {
  margin-bottom: 1rem;
  color: white;
}

.pricing-price {
  display: flex;
  justify-content: center;
  align-items: baseline;
  margin-bottom: 1rem;
}

.currency {
  font-size: 1.5rem;
  font-weight: 500;
  margin-right: 0.5rem;
}

.amount {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  font-family: var(--font-heading);
}

.period {
  font-size: 1rem;
  margin-left: 0.25rem;
}

.custom {
  font-size: 2rem;
  font-weight: 700;
  font-family: var(--font-heading);
}

.pricing-features {
  padding: 2rem;
  background: white;
  flex-grow: 1;
}

.pricing-features ul {
  padding: 0;
  list-style: none;
  margin-bottom: 0;
}

.pricing-features li {
  margin-bottom: 1rem;
  color: var(--dark-light);
  position: relative;
  padding-left: 25px;
}

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

.pricing-footer {
  padding: 0 2rem 2rem;
  background: white;
  text-align: center;
}

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

.careers-image-container {
  margin-bottom: 2rem;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

.careers-content {
  padding: 1rem;
}

.careers-content h3 {
  color: var(--dark-color);
  margin-bottom: 1.5rem;
  position: relative;
}

.careers-content h3:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 1.5px;
}

.careers-content ul {
  padding-left: 20px;
  margin-bottom: 2rem;
}

.careers-content li {
  margin-bottom: 0.5rem;
  color: var(--dark-light);
}

.job-listing {
  background: white;
  padding: 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.job-listing:hover {
  transform: translateY(-5px);
  box-shadow: var(--hover-shadow);
}

.job-listing h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.job-listing p {
  margin-bottom: 1.5rem;
  color: var(--dark-light);
}

/* Contact Section */
.contact-section {
  padding: var(--section-padding);
  background-color: #f9f9f9;
}

.contact-info {
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
  margin-bottom: 2rem;
}

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

.contact-item {
  display: flex;
  margin-bottom: 1.5rem;
  color: var(--dark-light);
}

.contact-item i {
  margin-right: 1rem;
  color: var(--primary-color);
}

.contact-item a {
  color: var(--dark-light);
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: var(--primary-color);
}

.contact-map {
  border-radius: var(--border-radius);
  overflow: hidden;
  margin-top: 2rem;
}

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

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

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

.form-control {
  border: 1px solid #eaeaea;
  border-radius: var(--border-radius);
  padding: 0.75rem 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 0.25rem rgba(91, 55, 235, 0.1);
}

.form-check-input {
  width: 1.2em;
  height: 1.2em;
  margin-top: 0.15em;
}

.form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

/* Footer */
.footer {
  background: var(--dark-color);
  color: white;
}

.footer-top {
  padding: 5rem 0 3rem;
}

.footer-info {
  margin-bottom: 2rem;
}

.footer-info p {
  color: rgba(255, 255, 255, 0.7);
  margin: 1.5rem 0;
}

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

.social-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

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

.footer h4 {
  color: white;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.footer h4:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--primary-color);
  border-radius: 1px;
}

.footer-links {
  margin-bottom: 2rem;
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: white;
  transform: translateX(5px);
}

.footer-newsletter {
  margin-bottom: 2rem;
}

.footer-newsletter p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}

.footer-newsletter form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-newsletter input {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  padding: 0.75rem 1rem;
  border-radius: var(--border-radius);
}

.footer-newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.footer-newsletter input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.2);
}

.footer-newsletter button {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 0.75rem 1rem;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: background 0.3s ease;
}

.footer-newsletter button:hover {
  background: var(--primary-dark);
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.2);
  padding: 1.5rem 0;
}

.copyright {
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
}

.footer-legal-links {
  text-align: center;
  margin-top: 1rem;
}

.footer-legal-links a {
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.footer-legal-links a:hover {
  color: white;
}

/* Success Page */
.success-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

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

.success-icon {
  width: 100px;
  height: 100px;
  background: var(--gradient-primary);
  color: white;
  font-size: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 2rem;
}

/* Privacy & Terms Pages */
.page-content {
  padding-top: 100px;
  padding-bottom: 5rem;
}

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

.page-content h2 {
  margin: 2.5rem 0 1.5rem;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (max-width: 992px) {
  :root {
    --section-padding: 5rem 0;
    --section-padding-sm: 3rem 0;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .service-card, .news-card, .pricing-card {
    margin-bottom: 1.5rem;
  }
  
  .timeline:before {
    left: 10px;
  }
  
  .timeline-marker {
    width: 20px;
    height: 20px;
    top: 5px;
  }
  
  .timeline-item {
    padding-left: 30px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 4rem 0;
    --section-padding-sm: 2.5rem 0;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .section-description {
    font-size: 1rem;
  }
  
  .footer-top {
    padding: 3rem 0 1.5rem;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .footer h4 {
    display: block;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  
  .footer h4:after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-links {
    text-align: center;
  }
  
  .pricing-card.featured {
    transform: scale(1);
  }
  
  .pricing-card.featured:hover {
    transform: translateY(-10px);
  }
}

@media (max-width: 576px) {
  :root {
    --section-padding: 3rem 0;
    --section-padding-sm: 2rem 0;
  }
  
  .hero-title {
    font-size: 1.75rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .contact-form-container, .contact-info {
    padding: 1.5rem;
  }
  
  .pricing-header {
    padding: 1.5rem;
  }
  
  .pricing-features {
    padding: 1.5rem;
  }
  
  .amount {
    font-size: 2.5rem;
  }
}