/* CSS Reset and Base Styles */
:root {
  /* Primary Colors */
  --primary-color: #3a6ea5;
  --primary-dark: #2a5081;
  --primary-light: #5890c7;
  
  /* Secondary Colors */
  --secondary-color: #e67e22;
  --secondary-dark: #d35400;
  --secondary-light: #f39c12;
  
  /* Neutral Colors */
  --neutral-100: #ffffff;
  --neutral-200: #f8f9fa;
  --neutral-300: #e9ecef;
  --neutral-400: #dee2e6;
  --neutral-500: #adb5bd;
  --neutral-600: #6c757d;
  --neutral-700: #495057;
  --neutral-800: #343a40;
  --neutral-900: #212529;
  
  /* Other Variables */
  --border-radius: 8px;
  --box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  --transition: all 0.3s ease;
  --container-padding: 5%;
}

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

html {
  scroll-behavior: smooth;
  font-size: 62.5%; /* 10px = 1rem */
}

body {
  font-family: 'Lato', sans-serif;
  font-size: 1.6rem;
  line-height: 1.6;
  color: var(--neutral-700);
  background-color: var(--neutral-100);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--neutral-800);
  margin-bottom: 1.5rem;
}

h1 {
  font-size: 4.8rem;
}

h2 {
  font-size: 3.6rem;
}

h3 {
  font-size: 2.4rem;
}

h4 {
  font-size: 2rem;
}

p {
  margin-bottom: 1.5rem;
}

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

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

ul {
  list-style: none;
}

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

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

/* Section Styles */
.section-padding {
  padding: 8rem 0;
}

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

.section-subtitle {
  text-align: center;
  font-size: 1.8rem;
  color: var(--neutral-600);
  margin-bottom: 5rem;
}

.bg-light {
  background-color: var(--neutral-200);
}

/* Button Styles */
.btn {
  display: inline-block;
  font-weight: 600;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  padding: 1.2rem 2.4rem;
  font-size: 1.6rem;
  border-radius: var(--border-radius);
  transition: var(--transition);
  border: none;
  outline: none;
  box-shadow: var(--box-shadow);
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--neutral-100) !important;
}

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

.btn-secondary {
  background-color: var(--secondary-color);
  color: var(--neutral-100) !important;
}

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

.btn-sm {
  padding: 0.8rem 1.6rem;
  font-size: 1.4rem;
}

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

.header.scrolled {
  padding: 1.5rem 0;
  background-color: rgba(255, 255, 255, 0.98);
}

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

.logo {
  font-size: 2.4rem;
  font-weight: 700;
}

.logo a {
  color: var(--primary-color);
}

.desktop-nav ul {
  display: flex;
}

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

.desktop-nav ul li a {
  color: var(--neutral-700);
  font-weight: 600;
  padding: 0.5rem 0;
  position: relative;
}

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

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

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

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

.mobile-menu-btn span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--neutral-800);
  transition: var(--transition);
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}

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

.mobile-menu-btn.active span:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  top: 76px;
  right: -100%;
  width: 250px;
  height: calc(100vh - 76px);
  background-color: var(--neutral-100);
  padding: 2rem;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  overflow-y: auto;
  z-index: 999;
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav ul li {
  margin-bottom: 1.5rem;
}

.mobile-nav ul li a {
  display: block;
  color: var(--neutral-700);
  font-weight: 600;
  padding: 0.8rem 0;
}

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

/* Hero Section */
.hero {
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  padding-top: 76px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

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

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

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

.hero-content h1 {
  color: var(--neutral-100);
  margin-bottom: 2rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
  color: var(--neutral-100);
  font-size: 2rem;
  margin-bottom: 3rem;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

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

.card {
  background-color: var(--neutral-100);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

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

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

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

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

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

.card-content h3 {
  margin-bottom: 1.5rem;
  color: var(--neutral-800);
}

.card-content p {
  color: var(--neutral-700);
  margin-bottom: 2rem;
}

/* History Section */
.history-timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 0;
}

.history-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background-color: var(--primary-color);
}

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

.timeline-content {
  background-color: var(--neutral-100);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 2.5rem;
  position: relative;
  width: calc(50% - 3rem);
  left: 50%;
  margin-left: 3rem;
}

.timeline-item:nth-child(even) .timeline-content {
  left: auto;
  right: 50%;
  margin-left: 0;
  margin-right: 3rem;
}

.timeline-content::before {
  content: '';
  position: absolute;
  top: 2rem;
  left: -2rem;
  width: 2rem;
  height: 2rem;
  background-color: var(--primary-color);
  border-radius: 50%;
}

.timeline-item:nth-child(even) .timeline-content::before {
  left: auto;
  right: -2rem;
}

.timeline-content h3 {
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.image-container {
  margin-bottom: 1.5rem;
  width: 100%;
  height: 250px;
  overflow: hidden;
  border-radius: var(--border-radius);
}

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

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

/* Resources Section */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 3rem;
}

.resource-card {
  background-color: var(--neutral-100);
  border-radius: var(--border-radius);
  padding: 2.5rem;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

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

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

.resource-card p {
  color: var(--neutral-700);
  margin-bottom: 2rem;
  flex-grow: 1;
}

.resource-link {
  display: inline-block;
  color: var(--primary-color);
  font-weight: 600;
  margin-top: auto;
  transition: var(--transition);
}

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

.resource-link i {
  margin-left: 0.5rem;
  transition: var(--transition);
}

.resource-link:hover i {
  transform: translateX(3px);
}

/* Events Section */
.events-slider {
  position: relative;
  overflow: hidden;
  padding: 2rem 0;
}

.events-container {
  display: flex;
  transition: transform 0.5s ease;
}

.event-card {
  flex: 0 0 calc(33.333% - 2rem);
  margin-right: 2rem;
  background-color: var(--neutral-100);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

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

.event-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

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

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

.event-content {
  padding: 2rem;
  position: relative;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.event-date {
  position: absolute;
  top: -50px;
  right: 20px;
  background-color: var(--primary-color);
  color: var(--neutral-100);
  border-radius: var(--border-radius);
  padding: 1rem;
  text-align: center;
  min-width: 70px;
  box-shadow: var(--box-shadow);
}

.event-date .day {
  display: block;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
}

.event-date .month {
  display: block;
  font-size: 1.4rem;
}

.event-content h3 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.event-content p {
  margin-bottom: 2rem;
}

.event-content .btn {
  align-self: flex-start;
  margin-top: auto;
}

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

.prev-btn,
.next-btn {
  background-color: var(--primary-color);
  color: var(--neutral-100);
  border: none;
  border-radius: 50%;
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.prev-btn:hover,
.next-btn:hover {
  background-color: var(--primary-dark);
}

/* Success Stories Section */
.stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 3rem;
}

.story-card {
  background-color: var(--neutral-100);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

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

/* Behind the Scenes Section */
.process-accordion {
  max-width: 900px;
  margin: 0 auto;
}

.accordion-item {
  margin-bottom: 2rem;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.accordion-header {
  background-color: var(--neutral-100);
  padding: 2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.accordion-header:hover {
  background-color: var(--neutral-200);
}

.accordion-header h3 {
  margin-bottom: 0;
}

.toggle-icon {
  color: var(--primary-color);
  font-size: 1.8rem;
  transition: var(--transition);
}

.accordion-header.active .toggle-icon i {
  transform: rotate(45deg);
}

.accordion-content {
  background-color: var(--neutral-100);
  padding: 0 2rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.accordion-content .image-container {
  margin: 2rem 0;
}

/* Customer Stories Section */
.testimonials-slider {
  position: relative;
  overflow: hidden;
  padding: 2rem 0;
}

.testimonials-container {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial {
  flex: 0 0 100%;
  display: none;
}

.testimonial-content {
  background-color: var(--neutral-100);
  border-radius: var(--border-radius);
  padding: 3rem;
  box-shadow: var(--box-shadow);
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.quote-icon {
  color: var(--primary-light);
  font-size: 3rem;
  margin-bottom: 2rem;
}

.testimonial-content p {
  font-style: italic;
  color: var(--neutral-700);
  font-size: 1.8rem;
  line-height: 1.7;
  margin-bottom: 3rem;
}

.client-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.client-info img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-color);
}

.client-details h4 {
  margin-bottom: 0.5rem;
  color: var(--neutral-800);
}

.client-details p {
  margin-bottom: 0;
  color: var(--neutral-600);
  font-style: normal;
  font-size: 1.4rem;
}

.slider-dots {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
  gap: 0.8rem;
}

.dot {
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  background-color: var(--neutral-300);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background-color: var(--primary-color);
}

/* Pricing Section */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-bottom: 5rem;
}

.pricing-card {
  background-color: var(--neutral-100);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

.pricing-card.featured {
  transform: scale(1.05);
  z-index: 1;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

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

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

.card-header {
  background-color: var(--primary-color);
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
}

.card-header h3 {
  color: var(--neutral-100);
  margin-bottom: 1.5rem;
}

.price {
  color: var(--neutral-100);
  font-size: 2.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.currency {
  font-size: 2rem;
  margin-right: 0.5rem;
  align-self: flex-start;
}

.amount {
  font-size: 4rem;
  line-height: 1;
}

.period {
  font-size: 1.6rem;
  font-weight: 400;
  margin-left: 0.5rem;
  align-self: flex-end;
}

.tag {
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--secondary-color);
  color: var(--neutral-100);
  padding: 0.5rem 1.5rem;
  font-size: 1.4rem;
  font-weight: 600;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 10% 100%);
  width: 120px;
  text-align: right;
}

.card-content {
  padding: 3rem 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.features {
  margin-bottom: 3rem;
  flex-grow: 1;
}

.features li {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.features li i {
  color: var(--primary-color);
  font-size: 1.8rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.features li.unavailable {
  color: var(--neutral-500);
}

.features li.unavailable i {
  color: var(--neutral-500);
}

.custom-pricing {
  background-color: var(--neutral-100);
  border-radius: var(--border-radius);
  padding: 3rem;
  box-shadow: var(--box-shadow);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.custom-pricing h3 {
  margin-bottom: 1.5rem;
}

.custom-pricing p {
  margin-bottom: 2.5rem;
}

/* Contact Section */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}

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

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

.info-item i {
  color: var(--primary-color);
  font-size: 2.4rem;
  flex-shrink: 0;
}

.info-item h3 {
  margin-bottom: 0.8rem;
  color: var(--neutral-800);
}

.info-item p {
  color: var(--neutral-700);
  margin-bottom: 0;
}

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

.map-container img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.contact-form {
  background-color: var(--neutral-100);
  border-radius: var(--border-radius);
  padding: 3rem;
  box-shadow: var(--box-shadow);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1.2rem;
  border: 1px solid var(--neutral-300);
  border-radius: var(--border-radius);
  font-family: 'Lato', sans-serif;
  font-size: 1.6rem;
  color: var(--neutral-700);
  transition: var(--transition);
}

.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(58, 110, 165, 0.2);
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.form-checkbox input {
  width: auto;
}

.form-checkbox label {
  margin-bottom: 0;
}

/* Footer */
.footer {
  background-color: var(--neutral-800);
  color: var(--neutral-300);
  padding-top: 6rem;
}

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

.footer-logo h2 {
  color: var(--neutral-100);
  margin-bottom: 1.5rem;
}

.footer-logo p {
  color: var(--neutral-400);
}

.footer-links h3,
.footer-services h3,
.footer-social h3 {
  color: var(--neutral-100);
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

.footer-links ul li,
.footer-services ul li,
.footer-social ul li {
  margin-bottom: 1rem;
}

.footer-links ul li a,
.footer-services ul li a,
.footer-social ul li a {
  color: var(--neutral-400);
  transition: var(--transition);
}

.footer-links ul li a:hover,
.footer-services ul li a:hover,
.footer-social ul li a:hover {
  color: var(--neutral-100);
  padding-left: 5px;
}

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

.footer-bottom p {
  margin-bottom: 0;
}

.footer-bottom ul {
  display: flex;
  gap: 2rem;
}

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

.success-content {
  max-width: 600px;
}

.success-icon {
  font-size: 8rem;
  color: var(--primary-color);
  margin-bottom: 3rem;
}

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

.success-content p {
  margin-bottom: 3rem;
  font-size: 1.8rem;
}

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

.page-content .container {
  max-width: 900px;
}

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

.page-content h2 {
  margin-top: 4rem;
  margin-bottom: 2rem;
  font-size: 2.8rem;
}

.page-content p,
.page-content ul {
  margin-bottom: 2rem;
}

.page-content ul {
  list-style: disc;
  padding-left: 2rem;
}

.page-content ul li {
  margin-bottom: 1rem;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  html {
    font-size: 60%;
  }
}

@media (max-width: 992px) {
  html {
    font-size: 58%;
  }
  
  .desktop-nav {
    display: none;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .contact-container {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .history-timeline::before {
    left: 2rem;
  }
  
  .timeline-content {
    width: calc(100% - 6rem);
    left: 6rem;
    margin-left: 0;
  }
  
  .timeline-item:nth-child(even) .timeline-content {
    left: 6rem;
    right: auto;
    margin-right: 0;
  }
  
  .timeline-content::before {
    left: -4rem;
  }
  
  .timeline-item:nth-child(even) .timeline-content::before {
    left: -4rem;
    right: auto;
  }
  
  .event-card {
    flex: 0 0 calc(50% - 2rem);
  }
}

@media (max-width: 768px) {
  html {
    font-size: 55%;
  }
  
  h1 {
    font-size: 4rem;
  }
  
  h2 {
    font-size: 3.2rem;
  }
  
  .section-padding {
    padding: 6rem 0;
  }
  
  .hero {
    min-height: 500px;
  }
  
  .hero-content h1 {
    font-size: 3.6rem;
  }
  
  .hero-content p {
    font-size: 1.8rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-bottom ul {
    justify-content: center;
  }
  
  .event-card {
    flex: 0 0 100%;
    margin-right: 0;
  }
}

@media (max-width: 576px) {
  .pricing-card.featured {
    transform: none;
  }
  
  .pricing-card.featured:hover {
    transform: translateY(-10px);
  }
}

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

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

.animate-fadeIn {
  animation: fadeIn 1s ease;
}

.animate-fadeInUp {
  animation: fadeInUp 1s ease;
}

/* Cookie Consent */
#cookie-consent {
  background-color: rgba(0,0,0,0.85);
  color: white;
  padding: 15px;
  text-align: center;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
}

#cookie-consent p {
  margin-bottom: 10px;
}

#cookie-consent button {
  background-color: #4CAF50;
  color: white;
  border: none;
  padding: 8px 16px;
  margin-top: 10px;
  cursor: pointer;
  border-radius: 4px;
}