/* Base Styles */
:root {
  --primary-color: #d92b04;
  --secondary-color: #2c4001;
  --accent-color: #f5c400;
  --text-color: #333;
  --text-light: #777;
  --background-color: #fff;
  --background-alt: #f8f8f8;
  --border-color: #ddd;
  --success-color: #4CAF50;
  --error-color: #F44336;
  --warning-color: #FF9800;
  --box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --border-radius: 8px;
  --font-primary: 'Poppins', sans-serif;
  --font-secondary: 'Playfair Display', serif;
}

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

body {
  font-family: var(--font-primary);
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--background-color);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-secondary);
  margin-bottom: 1rem;
  color: var(--text-color);
  font-weight: 700;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2.2rem;
}

h3 {
  font-size: 1.8rem;
}

h4 {
  font-size: 1.4rem;
}

p {
  margin-bottom: 1rem;
}

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

a:hover {
  color: var(--secondary-color);
}

ul {
  list-style: none;
}

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

.btn {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  padding: 10px 25px;
  border-radius: var(--border-radius);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.btn:hover {
  background-color: var(--secondary-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.btn-small {
  padding: 6px 15px;
  font-size: 0.9rem;
}

section {
  padding: 60px 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header and Navigation */
header {
  background-color: var(--background-color);
  box-shadow: var(--box-shadow);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 15px 0;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 0 20px;
}

.logo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

header h1 {
  font-size: 1.8rem;
  margin-bottom: 0;
  color: var(--primary-color);
}

nav {
  padding: 0 20px;
}

nav ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 10px;
}

nav ul li {
  margin: 0 15px;
}

nav ul li a {
  color: var(--text-color);
  font-weight: 500;
  position: relative;
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 5px;
}

nav ul li a i {
  font-size: 1.1rem;
}

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

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

nav ul li a:hover::after, nav ul li a.active::after {
  width: 100%;
}

/* Hero Section */
.hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/background.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 120px 20px;
  margin-bottom: 30px;
}

.hero-content h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: white;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Features Section */
.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 0 20px;
  max-width: 1200px;
  margin: 0 auto 60px;
}

.feature {
  flex: 1;
  min-width: 250px;
  max-width: 350px;
  text-align: center;
  padding: 30px 20px;
  background-color: var(--background-alt);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.feature h3 {
  margin-bottom: 15px;
}

/* Latest Posts Section */
.latest-posts {
  text-align: center;
  padding: 60px 20px;
  background-color: var(--background-alt);
}

.latest-posts h2 {
  margin-bottom: 40px;
}

.posts-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.post-card {
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  background-color: var(--background-color);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  overflow: hidden;
  transition: var(--transition);
}

.post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.post-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.post-card h3 {
  padding: 20px 20px 10px;
  font-size: 1.3rem;
}

.post-card p {
  padding: 0 20px 20px;
  color: var(--text-light);
}

.post-card .btn-small {
  margin: 0 20px 20px;
  display: inline-block;
}

.see-all {
  margin-top: 30px;
}

/* Pizza Stats Section */
.pizza-stats {
  padding: 60px 20px;
  text-align: center;
  background-color: var(--background-color);
}

.pizza-stats h2 {
  margin-bottom: 40px;
}

.stats-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.stat {
  flex: 1;
  min-width: 200px;
  max-width: 250px;
  padding: 30px 20px;
  border-radius: var(--border-radius);
  background-color: var(--background-alt);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.stat:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  display: block;
  margin-bottom: 10px;
}

/* Timeline Section */
.timeline {
  padding: 60px 20px;
  background-color: var(--background-alt);
  text-align: center;
}

.timeline h2 {
  margin-bottom: 40px;
}

.timeline-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline-container::after {
  content: '';
  position: absolute;
  width: 4px;
  background-color: var(--primary-color);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -2px;
}

.timeline-item {
  padding: 10px 40px;
  position: relative;
  width: 50%;
  text-align: left;
}

.timeline-item:nth-child(odd) {
  left: 0;
}

.timeline-item:nth-child(even) {
  left: 50%;
}

.timeline-dot {
  position: absolute;
  width: 20px;
  height: 20px;
  right: -10px;
  background-color: var(--accent-color);
  border: 4px solid var(--primary-color);
  border-radius: 50%;
  z-index: 1;
}

.timeline-item:nth-child(even) .timeline-dot {
  left: -10px;
}

.timeline-content {
  padding: 20px 30px;
  background-color: var(--background-color);
  position: relative;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

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

/* Footer Styles */
footer {
  background-color: var(--secondary-color);
  color: white;
  padding: 60px 20px 20px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto 40px;
  gap: 30px;
}

.footer-section {
  flex: 1;
  min-width: 250px;
}

.footer-section h3 {
  color: white;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

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

.footer-section p {
  margin-bottom: 10px;
}

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

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 50%;
  transition: var(--transition);
}

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

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
}

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

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--background-color);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  z-index: 999;
  display: none;
}

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

.cookie-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 15px 0;
  flex-wrap: wrap;
}

.btn-cookie {
  padding: 8px 20px;
  border-radius: var(--border-radius);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

#accept-cookies {
  background-color: var(--success-color);
  color: white;
}

#customize-cookies {
  background-color: var(--warning-color);
  color: white;
}

#decline-cookies {
  background-color: var(--error-color);
  color: white;
}

.cookie-content a {
  text-decoration: underline;
  color: var(--primary-color);
}

/* Blog Page Styles */
.blog-header {
  text-align: center;
  padding: 60px 20px;
  background-color: var(--background-alt);
}

.blog-header h2 {
  margin-bottom: 20px;
}

.blog-posts {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.blog-post {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 60px;
  background-color: var(--background-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.blog-post img {
  width: 300px;
  height: 300px;
  object-fit: cover;
}

.blog-post-content {
  flex: 1;
  padding: 30px;
  min-width: 300px;
}

.blog-post-content h3 {
  margin-bottom: 15px;
}

.post-meta {
  display: flex;
  gap: 20px;
  color: var(--text-light);
  margin-bottom: 20px;
}

.post-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.post-meta i {
  color: var(--primary-color);
}

/* Blog Post Single Page */
.blog-post-single {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
}

.post-header {
  text-align: center;
  margin-bottom: 30px;
}

.post-header h2 {
  margin-bottom: 20px;
}

.post-featured-image {
  margin-bottom: 30px;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.post-featured-image img {
  width: 100%;
  height: auto;
}

.post-content {
  margin-bottom: 40px;
}

.post-content h3 {
  margin-top: 30px;
  margin-bottom: 15px;
}

.post-content p {
  margin-bottom: 20px;
}

.post-content ul, .post-content ol {
  margin-bottom: 20px;
  padding-left: 20px;
}

.post-content li {
  margin-bottom: 10px;
}

.post-tags {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.post-tags span {
  font-weight: 600;
}

.post-tags a {
  display: inline-block;
  padding: 5px 12px;
  background-color: var(--background-alt);
  border-radius: 20px;
  font-size: 0.9rem;
  transition: var(--transition);
}

.post-tags a:hover {
  background-color: var(--primary-color);
  color: white;
}

.post-navigation {
  display: flex;
  justify-content: space-between;
  padding-top: 30px;
  border-top: 1px solid var(--border-color);
}

.nav-previous a, .nav-next a {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Menu Page Styles */
.menu-header {
  text-align: center;
  padding: 60px 20px;
  background-color: var(--background-alt);
}

.menu-header h2 {
  margin-bottom: 20px;
}

.menu-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.menu-filter {
  padding: 8px 20px;
  background-color: var(--background-color);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  cursor: pointer;
  transition: var(--transition);
}

.menu-filter:hover, .menu-filter.active {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.menu-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.menu-section h3 {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.menu-section h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--primary-color);
}

.menu-items {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.menu-item {
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  background-color: var(--background-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.menu-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.menu-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.menu-item-content {
  padding: 20px;
}

.menu-item-content h4 {
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.description {
  margin-bottom: 15px;
  color: var(--text-light);
}

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

.dietary-info {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  text-align: center;
  line-height: 20px;
  font-size: 0.7rem;
  color: white;
  font-weight: 700;
  margin-left: 5px;
}

.vegetarian {
  background-color: #4CAF50;
}

.vegan {
  background-color: #8BC34A;
}

.vegan-option {
  background-color: #CDDC39;
}

.gluten-free {
  background-color: #FF9800;
}

.gluten-free-option {
  background-color: #FFC107;
}

.dietary-key {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px 60px;
  text-align: center;
}

.dietary-info-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.dietary-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.allergy-notice {
  margin-top: 20px;
  padding: 15px;
  background-color: #FFF8E1;
  border-radius: var(--border-radius);
  border-left: 4px solid #FFC107;
}

.call-to-action {
  text-align: center;
  padding: 60px 20px;
  background-color: var(--background-alt);
}

.call-to-action h3 {
  margin-bottom: 15px;
}

.call-to-action p {
  margin-bottom: 30px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* About Page Styles */
.about-header {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/background.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 100px 20px;
}

.about-header h2 {
  color: white;
  margin-bottom: 20px;
}

.about-story {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  gap: 40px;
  align-items: center;
}

.about-image {
  flex: 1;
  min-width: 300px;
}

.about-image img {
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.about-content {
  flex: 1;
  min-width: 300px;
}

.about-values {
  padding: 60px 20px;
  background-color: var(--background-alt);
  text-align: center;
}

.about-values h3 {
  margin-bottom: 40px;
}

.values-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.value {
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  padding: 30px 20px;
  background-color: var(--background-color);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.value:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.value i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.team-section {
  text-align: center;
  padding: 60px 20px;
}

.team-section h3 {
  margin-bottom: 15px;
}

.team-section > p {
  margin-bottom: 40px;
}

.team-members {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.team-member {
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  background-color: var(--background-alt);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

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

.team-member h3 {
  margin: 15px 0 5px;
  font-size: 1.3rem;
}

.team-member p {
  padding: 0 15px;
  margin-bottom: 15px;
}

.team-member p:nth-of-type(1) {
  font-weight: 600;
  color: var(--primary-color);
}

.team-member .social-links {
  justify-content: center;
  margin: 15px 0;
}

.team-member .social-links a {
  background-color: var(--primary-color);
}

.team-member .social-links a:hover {
  background-color: var(--secondary-color);
}

.testimonials {
  padding: 60px 20px;
  background-color: var(--background-alt);
  text-align: center;
}

.testimonials h3 {
  margin-bottom: 40px;
}

.testimonials-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial {
  flex: 1;
  min-width: 300px;
  max-width: 370px;
  background-color: var(--background-color);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
  position: relative;
  padding: 20px 0;
}

.testimonial-content::before {
  content: '\201C';
  font-size: 4rem;
  position: absolute;
  top: -20px;
  left: -10px;
  color: var(--primary-color);
  opacity: 0.3;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.stars {
  color: #FFD700;
  margin-top: 5px;
}

.awards {
  text-align: center;
  padding: 60px 20px;
}

.awards h3 {
  margin-bottom: 40px;
}

.awards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.award {
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  padding: 30px 20px;
  background-color: var(--background-alt);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.award:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.award i {
  font-size: 2.5rem;
  color: #FFD700;
  margin-bottom: 20px;
}

.cta-visit {
  text-align: center;
  padding: 60px 20px;
  background-color: var(--background-alt);
}

.cta-visit h3 {
  margin-bottom: 15px;
}

.cta-visit p {
  margin-bottom: 30px;
}

/* Contact Page Styles */
.contact-header {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/background.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 100px 20px;
}

.contact-header h2 {
  color: white;
  margin-bottom: 20px;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  gap: 40px;
}

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

.contact-info h3 {
  margin-bottom: 30px;
}

.info-item {
  display: flex;
  margin-bottom: 30px;
}

.info-item i {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-top: 5px;
  margin-right: 20px;
  width: 30px;
  text-align: center;
}

.info-item h4 {
  margin-bottom: 10px;
}

.contact-form-container {
  flex: 1;
  min-width: 300px;
}

.contact-form-container h3 {
  margin-bottom: 30px;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  font-family: var(--font-primary);
  font-size: 1rem;
}

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

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkbox-group input {
  width: auto;
}

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

.map-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.map-section h3 {
  margin-bottom: 30px;
}

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

.faq-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.faq-section h3 {
  margin-bottom: 40px;
}

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

.faq-item {
  margin-bottom: 20px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

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

.faq-question h4 {
  margin-bottom: 0;
}

.faq-question i {
  transition: var(--transition);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active .faq-question {
  background-color: var(--primary-color);
  color: white;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-item.active .faq-answer {
  padding: 20px;
  max-height: 1000px;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  overflow: auto;
}

.modal-content {
  background-color: var(--background-color);
  margin: 15% auto;
  padding: 40px;
  border-radius: var(--border-radius);
  max-width: 500px;
  text-align: center;
  position: relative;
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 1.5rem;
  cursor: pointer;
}

.modal-content i {
  font-size: 3rem;
  color: var(--success-color);
  margin-bottom: 20px;
}

.modal-content h3 {
  margin-bottom: 15px;
}

.modal-content .btn {
  margin-top: 20px;
}

/* Responsive Styles */
@media (min-width: 768px) {
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
  }

  .logo-container {
    padding: 0;
  }

  nav {
    padding: 0;
  }

  nav ul {
    margin-top: 0;
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  .hero {
    padding: 80px 20px;
  }

  .hero-content h2 {
    font-size: 2.2rem;
  }

  .blog-post img {
    width: 100%;
    height: 200px;
  }

  .timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }

  .timeline-item:nth-child(even) {
    left: 0;
  }

  .timeline-container::after {
    left: 31px;
  }

  .timeline-dot {
    left: 20px;
  }

  .timeline-item:nth-child(even) .timeline-dot {
    left: 20px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
    flex-wrap: wrap;
  }
}

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

.feature, .post-card, .stat, .value, .team-member, .testimonial, .award {
  animation: fadeIn 0.5s ease-out;
}
