/* Base Styles */
:root {
  --primary-color: #e63946;
  --secondary-color: #457b9d;
  --text-color: #1d3557;
  --light-color: #f1faee;
  --accent-color: #a8dadc;
  --grey-color: #e9ecef;
  --dark-grey: #6c757d;
  --success-color: #2a9d8f;
  --warning-color: #e9c46a;
  --danger-color: #e63946;
  --body-font: 'Roboto', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --heading-font: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-size-base: 16px;
  --border-radius: 4px;
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

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

html {
  font-size: var(--font-size-base);
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
  background-color: #fff;
}

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

a:hover {
  color: #c52331;
}

ul {
  list-style: none;
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

section {
  padding: 70px 0;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--light-color);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 6px;
  border: 3px solid var(--light-color);
}

::-webkit-scrollbar-thumb:hover {
  background: #c52331;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  margin-bottom: 1rem;
  line-height: 1.3;
  font-weight: 700;
  color: var(--text-color);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

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

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: var(--border-radius);
  text-align: center;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-size: 1rem;
}

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

.primary-btn:hover {
  background-color: #c52331;
  color: #fff;
}

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

.secondary-btn:hover {
  background-color: #3a6889;
  color: #fff;
}

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

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

.app-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background-color: #000;
  color: #fff;
  border-radius: var(--border-radius);
  font-size: 0.9rem;
}

.app-button svg {
  width: 20px;
  height: 20px;
}

.app-button:hover {
  background-color: #333;
  color: #fff;
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

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

.logo img {
  height: 50px;
  width: auto;
}

nav ul {
  display: flex;
  gap: 20px;
}

nav ul li a {
  color: var(--text-color);
  font-weight: 500;
  padding: 8px 12px;
  border-radius: var(--border-radius);
}

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

nav ul li a.order-btn {
  background-color: var(--primary-color);
  color: #fff;
  padding: 8px 16px;
  border-radius: var(--border-radius);
}

nav ul li a.order-btn:hover {
  background-color: #c52331;
}

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

.mobile-menu-toggle span {
  height: 3px;
  width: 100%;
  background-color: var(--text-color);
  border-radius: 3px;
}

.font-size-button {
  margin-left: 20px;
}

.font-size-button button {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-color);
}

.font-size-button button:hover {
  color: var(--primary-color);
}

/* Hero Section */
.hero {
  background-color: var(--light-color);
  padding: 80px 0;
}

.hero .container {
  display: flex;
  align-items: center;
  gap: 40px;
}

.hero-content {
  flex: 1;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--text-color);
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

.hero-image {
  flex: 1;
  position: relative;
}

.hero-image img {
  border-radius: 8px;
  box-shadow: var(--box-shadow);
}

/* Features Section */
.features {
  background-color: #fff;
}

.features h2 {
  text-align: center;
  margin-bottom: 40px;
}

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

.feature-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  text-align: center;
  transition: var(--transition);
}

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

.feature-icon {
  margin-bottom: 20px;
  color: var(--primary-color);
}

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

/* Popular Slices Section */
.popular-slices {
  background-color: var(--light-color);
}

.popular-slices h2 {
  text-align: center;
  margin-bottom: 40px;
}

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

.slice-card {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

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

.slice-image {
  height: 200px;
  overflow: hidden;
}

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

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

.slice-card h3 {
  padding: 15px 20px 0;
  font-size: 1.2rem;
}

.slice-card p {
  padding: 0 20px;
  color: var(--dark-grey);
}

.price {
  display: block;
  padding: 0 20px 20px;
  font-weight: 700;
  color: var(--primary-color);
  font-size: 1.2rem;
}

/* Blog Preview Section */
.blog-preview {
  background-color: #fff;
}

.blog-preview h2 {
  text-align: center;
  margin-bottom: 40px;
}

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

.small-grid {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.full-grid {
  grid-template-columns: 1fr;
}

.full-grid .blog-card {
  display: flex;
  flex-direction: column;
}

.blog-card {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

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

.blog-image {
  height: 200px;
  overflow: hidden;
}

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

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

.blog-card .blog-content {
  padding: 20px;
}

.blog-card h3, .blog-card h4 {
  margin-bottom: 10px;
}

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

.read-more {
  display: inline-block;
  color: var(--primary-color);
  font-weight: 600;
}

.read-more:hover {
  color: #c52331;
}

.blog-card.large .blog-image {
  height: 350px;
}

.view-all-container {
  text-align: center;
  margin-top: 40px;
}

/* CTA Section */
.cta {
  background-color: var(--accent-color);
  padding: 80px 0;
}

.cta .container {
  display: flex;
  align-items: center;
  gap: 40px;
}

.cta-content {
  flex: 1;
}

.cta-content h2 {
  margin-bottom: 1rem;
}

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

.app-buttons {
  display: flex;
  gap: 15px;
}

.cta-image {
  flex: 1;
}

.cta-image img {
  border-radius: 8px;
  box-shadow: var(--box-shadow);
}

/* Footer */
footer {
  background-color: var(--text-color);
  color: #fff;
  padding: 70px 0 0;
}

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

.footer-logo img {
  height: 50px;
  width: auto;
  margin-bottom: 20px;
}

.footer-column p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}

.footer-column h3 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  color: #fff;
  transition: var(--transition);
}

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

.footer-column ul li {
  margin-bottom: 10px;
}

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

.footer-column ul li a:hover {
  color: var(--primary-color);
}

.footer-column address p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

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

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

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

.legal-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

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

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  background-color: var(--text-color);
  color: #fff;
  padding: 20px 0;
  z-index: 1000;
  transition: bottom 0.5s ease;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-consent.show {
  bottom: 0;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.cookie-content p {
  text-align: center;
  margin-bottom: 0;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.cookie-content a {
  color: var(--accent-color);
  font-size: 0.9rem;
}

.cookie-content a:hover {
  text-decoration: underline;
}

/* Blog Page Styles */
.page-header {
  background-color: var(--light-color);
  padding: 60px 0;
  text-align: center;
}

.page-header h1 {
  margin-bottom: 10px;
}

.page-header p {
  font-size: 1.2rem;
  color: var(--dark-grey);
  max-width: 700px;
  margin: 0 auto;
}

.blog-content {
  padding: 70px 0;
}

.blog-card .date {
  display: block;
  font-size: 0.9rem;
  color: var(--dark-grey);
  margin-bottom: 10px;
}

/* Newsletter Section */
.newsletter {
  background-color: var(--accent-color);
  padding: 70px 0;
}

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

.newsletter-content h2 {
  margin-bottom: 15px;
}

.newsletter-content p {
  margin-bottom: 30px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 15px;
  border: none;
  border-radius: var(--border-radius);
  font-size: 1rem;
}

/* Single Blog Post */
.blog-single-header {
  background-color: var(--light-color);
  padding: 60px 0;
}

.breadcrumb {
  margin-bottom: 20px;
  color: var(--dark-grey);
}

.breadcrumb a {
  color: var(--dark-grey);
}

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

.post-meta {
  display: flex;
  gap: 20px;
  color: var(--dark-grey);
  margin-top: 15px;
}

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

.blog-single {
  padding: 70px 0;
}

.blog-single .container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

.featured-image {
  margin-bottom: 30px;
  border-radius: 8px;
  overflow: hidden;
}

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

.featured-image figcaption {
  padding: 10px;
  background-color: var(--light-color);
  color: var(--dark-grey);
  font-size: 0.9rem;
  text-align: center;
}

.blog-text h2 {
  margin-top: 40px;
  margin-bottom: 20px;
}

.blog-text h3 {
  margin-top: 30px;
  margin-bottom: 15px;
}

.blog-text p {
  margin-bottom: 20px;
}

.blog-text ul, .blog-text ol {
  margin-bottom: 20px;
  padding-left: 20px;
}

.blog-text ul li, .blog-text ol li {
  margin-bottom: 10px;
}

.blog-text blockquote {
  border-left: 4px solid var(--primary-color);
  padding: 20px;
  background-color: var(--light-color);
  margin: 30px 0;
  font-style: italic;
}

.blog-text blockquote cite {
  display: block;
  margin-top: 10px;
  font-style: normal;
  font-weight: 600;
}

.author-bio {
  display: flex;
  gap: 20px;
  background-color: var(--light-color);
  padding: 20px;
  border-radius: 8px;
  margin: 40px 0;
}

.author-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
}

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

.author-info h3 {
  margin-bottom: 5px;
}

.author-info p {
  margin-bottom: 0;
  color: var(--dark-grey);
}

.post-navigation {
  border-top: 1px solid var(--grey-color);
  border-bottom: 1px solid var(--grey-color);
  padding: 20px 0;
  margin: 40px 0;
}

.nav-links {
  display: flex;
  justify-content: space-between;
}

.nav-previous, .nav-next {
  max-width: 50%;
}

.nav-subtitle {
  display: block;
  color: var(--dark-grey);
  font-size: 0.9rem;
  margin-bottom: 5px;
}

.nav-title {
  font-weight: 600;
  color: var(--text-color);
}

.related-posts h3 {
  margin-bottom: 20px;
}

/* Sidebar */
.blog-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-widget {
  margin-bottom: 40px;
  background-color: var(--light-color);
  padding: 20px;
  border-radius: 8px;
}

.sidebar-widget h3 {
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 10px;
}

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

.category-list li {
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 10px;
}

.category-list li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.recent-posts li {
  margin-bottom: 15px;
}

.recent-posts a {
  display: block;
  font-weight: 600;
}

.post-date {
  display: block;
  font-size: 0.85rem;
  color: var(--dark-grey);
}

.promo-widget {
  text-align: center;
}

.promo-widget img {
  border-radius: 8px;
  margin-bottom: 15px;
  width: 100%;
}

.promo-widget h4 {
  margin-bottom: 10px;
}

.promo-widget p {
  margin-bottom: 15px;
}

/* About Page Styles */
.about-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 40px;
  align-items: center;
}

.about-content h2 {
  margin-top: 0;
}

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

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.value-card {
  text-align: center;
  padding: 30px;
  background-color: var(--light-color);
  border-radius: 8px;
  transition: var(--transition);
}

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

.value-icon {
  color: var(--primary-color);
  margin-bottom: 20px;
}

.team {
  background-color: var(--light-color);
}

.team-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}

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

.team-member {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

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

.team-member img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  border: 5px solid var(--light-color);
}

.team-member h3 {
  margin-bottom: 5px;
}

.team-member p:first-of-type {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 15px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  color: var(--dark-grey);
}

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

.milestones {
  padding: 70px 0;
}

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

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 20px;
  width: 2px;
  background-color: var(--grey-color);
}

.timeline-item {
  position: relative;
  padding-left: 50px;
  margin-bottom: 50px;
}

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

.timeline-dot {
  position: absolute;
  top: 0;
  left: 16px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--primary-color);
  border: 2px solid var(--light-color);
  z-index: 1;
}

.timeline-content {
  background-color: var(--light-color);
  padding: 20px;
  border-radius: 8px;
}

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

.testimonials {
  background-color: var(--light-color);
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 40px;
}

.testimonials-slider {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  padding-bottom: 20px;
  scrollbar-width: thin;
  scrollbar-color: var(--primary-color) var(--light-color);
}

.testimonial {
  min-width: 350px;
  background-color: #fff;
  border-radius: 8px;
  padding: 30px;
  box-shadow: var(--box-shadow);
}

.testimonial-content p {
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author h4 {
  margin-bottom: 5px;
}

.testimonial-author p {
  color: var(--dark-grey);
  margin-bottom: 0;
}

/* Contact Page Styles */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
}

.contact-methods {
  display: grid;
  gap: 20px;
}

.contact-method {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.method-icon {
  color: var(--primary-color);
}

.method-details h3 {
  margin-bottom: 5px;
}

.method-details p {
  margin-bottom: 5px;
}

.method-details p:last-child {
  margin-bottom: 0;
}

.social-contact {
  margin-top: 30px;
}

.social-icons.large a {
  font-size: 1.5rem;
}

.contact-form-container {
  background-color: var(--light-color);
  padding: 30px;
  border-radius: 8px;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  margin-bottom: 5px;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 15px;
  border: 1px solid var(--grey-color);
  border-radius: var(--border-radius);
  font-size: 1rem;
  font-family: var(--body-font);
}

.form-group textarea {
  resize: vertical;
}

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

.checkbox-group input {
  width: auto;
  margin: 0;
}

.form-actions {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 20px;
}

.location-map {
  margin-top: 70px;
}

.location-map h2 {
  text-align: center;
  margin-bottom: 30px;
}

.map-container {
  position: relative;
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

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

.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  padding: 20px;
}

.map-overlay p {
  margin-bottom: 10px;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 10px;
  border-radius: var(--border-radius);
}

.map-overlay a {
  color: #fff;
  text-decoration: underline;
}

.faq {
  margin-top: 70px;
}

.faq h2 {
  text-align: center;
  margin-bottom: 40px;
}

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

.faq-item {
  background-color: var(--light-color);
  padding: 20px;
  border-radius: 8px;
  transition: var(--transition);
}

.faq-item:hover {
  box-shadow: var(--box-shadow);
}

.faq-item h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.faq-item p {
  margin-bottom: 0;
}

.thank-you-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.thank-you-popup.show {
  opacity: 1;
  visibility: visible;
}

.popup-content {
  background-color: #fff;
  padding: 40px;
  border-radius: 8px;
  text-align: center;
  max-width: 500px;
  width: 90%;
}

.popup-content svg {
  color: var(--success-color);
  margin-bottom: 20px;
}

.popup-content h2 {
  margin-bottom: 15px;
}

.popup-content p {
  margin-bottom: 30px;
}

/* Responsive Design */
@media (max-width: 992px) {
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .hero .container,
  .cta .container {
    flex-direction: column;
  }
  
  .hero-content,
  .cta-content,
  .hero-image,
  .cta-image {
    flex: none;
    width: 100%;
  }
  
  .blog-single .container {
    grid-template-columns: 1fr;
  }
  
  .blog-sidebar {
    position: static;
    margin-top: 50px;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
  }
  
  .about-image {
    order: -1;
  }
}

@media (max-width: 768px) {
  header .container {
    flex-wrap: wrap;
  }
  
  nav {
    order: 3;
    width: 100%;
    margin-top: 15px;
    display: none;
  }
  
  nav.active {
    display: block;
  }
  
  nav ul {
    flex-direction: column;
    gap: 10px;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .timeline::before {
    left: 10px;
  }
  
  .timeline-item {
    padding-left: 30px;
  }
  
  .timeline-dot {
    left: 6px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-form {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .legal-links {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  section {
    padding: 50px 0;
  }
  
  .hero-buttons,
  .app-buttons {
    flex-direction: column;
    gap: 10px;
  }
  
  .hero-buttons .btn,
  .app-buttons .app-button {
    width: 100%;
  }
  
  .newsletter-form {
    flex-direction: column;
    gap: 10px;
  }
  
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }
  
  .cookie-buttons button {
    width: 100%;
  }
}

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

.feature-card, .slice-card, .blog-card, .value-card, .team-member {
  animation: fadeIn 0.6s ease-out backwards;
}

.feature-card:nth-child(1), .slice-card:nth-child(1), .blog-card:nth-child(1), .value-card:nth-child(1), .team-member:nth-child(1) {
  animation-delay: 0.1s;
}

.feature-card:nth-child(2), .slice-card:nth-child(2), .blog-card:nth-child(2), .value-card:nth-child(2), .team-member:nth-child(2) {
  animation-delay: 0.2s;
}

.feature-card:nth-child(3), .slice-card:nth-child(3), .blog-card:nth-child(3), .value-card:nth-child(3), .team-member:nth-child(3) {
  animation-delay: 0.3s;
}

.feature-card:nth-child(4), .slice-card:nth-child(4), .blog-card:nth-child(4), .value-card:nth-child(4), .team-member:nth-child(4) {
  animation-delay: 0.4s;
}

.feature-card:nth-child(5), .slice-card:nth-child(5), .blog-card:nth-child(5), .value-card:nth-child(5), .team-member:nth-child(5) {
  animation-delay: 0.5s;
}
