/* Base Styles and Variables */
:root {
  --primary-color: #8B5E3C;
  --secondary-color: #5A3D2B;
  --accent-color: #D2A24C;
  --light-accent: #F0E6D2;
  --dark-color: #2C1E12;
  --text-color: #333333;
  --light-text: #666666;
  --background-color: #FFFFFF;
  --light-bg: #F9F5F0;
  --border-color: #E0D5C1;
  --success-color: #4CAF50;
  --error-color: #F44336;
  --warning-color: #FF9800;
  --max-width: 1200px;
  --border-radius: 8px;
  --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Lato', sans-serif;
}

/* Typography */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Lato:wght@300;400;700&display=swap');

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

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

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);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1.5rem;
}

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

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

ul, ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Header and Navigation */
header {
  background-color: var(--background-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo-container {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
  padding: 0 20px;
}

.logo-container img {
  width: 60px;
  height: 60px;
  margin-right: 15px;
  border-radius: 50%;
  object-fit: cover;
}

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

nav {
  display: flex;
  justify-content: center;
  border-top: 1px solid var(--border-color);
  padding-top: 0.5rem;
}

nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav ul li {
  margin: 0 15px;
}

nav ul li a {
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
  display: block;
}

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

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

nav ul li a.active {
  color: var(--secondary-color);
  font-weight: 700;
}

.font-size-control {
  position: absolute;
  top: 20px;
  right: 20px;
}

.font-size-control button {
  background-color: var(--light-bg);
  border: 1px solid var(--border-color);
  padding: 5px 10px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.875rem;
  transition: var(--transition);
}

.font-size-control button:hover {
  background-color: var(--border-color);
}

/* Hero Section */
.hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/1.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 6rem 1rem;
  margin-bottom: 3rem;
}

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

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: white;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

/* Buttons */
.btn {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-size: 0.875rem;
}

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

/* Featured Posts Section */
.featured-posts {
  padding: 2rem 0 4rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.featured-posts h2 {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.featured-posts h2:after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background-color: var(--accent-color);
  margin: 0.5rem auto 0;
}

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

.post-card {
  background-color: var(--background-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

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

.post-card h3 {
  font-size: 1.25rem;
  margin: 1rem 1.5rem 0.5rem;
}

.post-card p {
  color: var(--light-text);
  margin: 0 1.5rem 1rem;
  font-size: 0.95rem;
}

.read-more {
  display: inline-block;
  margin: 0 1.5rem 1.5rem;
  color: var(--primary-color);
  font-weight: 700;
  position: relative;
}

.read-more:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--primary-color);
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.3s ease-out;
}

.read-more:hover:after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.view-all {
  text-align: center;
  margin-top: 2rem;
}

/* Newsletter Section */
.newsletter {
  background-color: var(--light-bg);
  padding: 4rem 1rem;
  margin: 4rem 0;
}

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

.newsletter h2 {
  margin-bottom: 1rem;
}

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

.newsletter form {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.newsletter input {
  flex: 1;
  min-width: 200px;
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  font-size: 1rem;
}

.subscriber-count {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--light-text);
}

#subscriber-number {
  font-weight: 700;
  color: var(--primary-color);
}

/* Footer */
footer {
  background-color: var(--dark-color);
  color: white;
  padding: 4rem 1rem 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-about, .footer-links, .footer-contact {
  padding: 0 1rem;
}

.footer-logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.footer-about p {
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
}

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

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

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

.footer-links h3, .footer-contact h3 {
  color: white;
  margin-bottom: 1.5rem;
}

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

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

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

.footer-links ul li a:hover {
  color: var(--accent-color);
  padding-left: 5px;
}

.footer-contact p {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.8);
}

.footer-contact p i {
  margin-right: 10px;
  color: var(--accent-color);
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 2rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-legal {
  margin-top: 1rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.8);
  margin: 0 10px;
}

.footer-legal a:hover {
  color: var(--accent-color);
}

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

.cookie-content {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cookie-content p {
  margin-bottom: 1rem;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.btn-accept {
  background-color: var(--success-color);
}

.btn-customize {
  background-color: var(--light-text);
}

.btn-decline {
  background-color: var(--error-color);
}

.cookie-content a {
  font-size: 0.875rem;
  text-decoration: underline;
}

/* Page Banner */
.page-banner {
  background-color: var(--light-bg);
  padding: 3rem 1rem;
  text-align: center;
  margin-bottom: 3rem;
}

.page-banner h2 {
  margin-bottom: 0.5rem;
}

.page-banner p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--light-text);
}

/* Blog Posts Listing */
.blog-posts {
  max-width: var(--max-width);
  margin: 0 auto 4rem;
  padding: 0 20px;
}

.blog-posts .post-card {
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .blog-posts .post-card {
    flex-direction: row;
    align-items: center;
  }
  
  .blog-posts .post-card img {
    width: 300px;
    height: 200px;
  }
  
  .blog-posts .post-content {
    flex: 1;
    padding: 1.5rem;
  }
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--light-text);
  margin-bottom: 1rem;
}

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

.post-meta i {
  margin-right: 5px;
}

/* Blog Post Detail */
.blog-post-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: var(--max-width);
  margin: 0 auto 4rem;
  padding: 0 20px;
}

@media (min-width: 992px) {
  .blog-post-container {
    grid-template-columns: 2fr 1fr;
  }
}

.blog-post {
  background-color: var(--background-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.post-header {
  padding: 2rem 2rem 1rem;
}

.post-featured-image img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
}

.post-content {
  padding: 2rem;
}

.post-content h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

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

.post-content ul, .post-content ol {
  margin-bottom: 1.5rem;
}

.post-content li {
  margin-bottom: 0.5rem;
}

.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0 2rem 1rem;
  align-items: center;
}

.post-tags span {
  font-weight: 700;
  color: var(--dark-color);
}

.post-tags a {
  background-color: var(--light-bg);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.875rem;
  color: var(--light-text);
  transition: var(--transition);
}

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

.post-share {
  display: flex;
  align-items: center;
  padding: 1rem 2rem;
  border-top: 1px solid var(--border-color);
}

.post-share span {
  font-weight: 700;
  margin-right: 1rem;
}

.post-share a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--light-bg);
  margin-right: 0.5rem;
  color: var(--light-text);
  transition: var(--transition);
}

.post-share a:hover {
  background-color: var(--accent-color);
  color: white;
}

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

.recipe-card {
  background-color: var(--light-bg);
  border-radius: var(--border-radius);
  padding: 2rem;
  margin: 2rem 0;
}

.recipe-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.recipe-detail {
  text-align: center;
  padding: 0.5rem;
}

.recipe-detail span {
  display: block;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--primary-color);
}

.recipe-detail p {
  margin: 0;
  font-size: 0.95rem;
}

.ingredients-list, .instructions-list {
  margin-bottom: 1.5rem;
}

.ingredients-list li, .instructions-list li {
  margin-bottom: 0.5rem;
}

/* Blog Sidebar */
.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sidebar-widget {
  background-color: var(--background-color);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  box-shadow: var(--box-shadow);
}

.sidebar-widget h3 {
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

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

.author-info {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.author-info img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  object-fit: cover;
}

.author-info h4 {
  margin-bottom: 0.25rem;
  font-size: 1.1rem;
}

.author-info p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--light-text);
}

.recent-posts ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.recent-posts ul li {
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1rem;
}

.recent-posts ul li:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}

.recent-posts ul li a {
  display: flex;
  align-items: center;
}

.recent-posts ul li img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: var(--border-radius);
  margin-right: 1rem;
}

.recent-posts ul li h4 {
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
  transition: var(--transition);
}

.recent-posts ul li span {
  font-size: 0.8rem;
  color: var(--light-text);
}

.recent-posts ul li a:hover h4 {
  color: var(--accent-color);
}

.newsletter-widget form {
  display: flex;
  flex-direction: column;
}

.newsletter-widget input {
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
}

/* Related Posts */
.related-posts {
  max-width: var(--max-width);
  margin: 0 auto 4rem;
  padding: 0 20px;
}

.related-posts h2 {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.related-posts h2:after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background-color: var(--accent-color);
  margin: 0.5rem auto 0;
}

/* About Page */
.about-intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: var(--max-width);
  margin: 0 auto 4rem;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .about-intro {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.about-content h2 {
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.about-content h2:after {
  content: '';
  position: absolute;
  width: 50px;
  height: 3px;
  background-color: var(--accent-color);
  bottom: 0;
  left: 0;
}

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

.team-section {
  background-color: var(--light-bg);
  padding: 4rem 0;
  text-align: center;
  margin-bottom: 4rem;
}

.team-section h2 {
  margin-bottom: 0.5rem;
}

.team-section > p {
  max-width: 600px;
  margin: 0 auto 3rem;
  color: var(--light-text);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.team-member {
  background-color: var(--background-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

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

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

.team-member h3 {
  margin: 1rem 0 0.25rem;
  font-size: 1.25rem;
}

.team-member p {
  color: var(--light-text);
  margin: 0 1rem 1rem;
  font-size: 0.95rem;
}

.team-member p:first-of-type {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.team-member .social-icons {
  justify-content: center;
  margin-bottom: 1.5rem;
}

.team-member .social-icons a {
  background-color: var(--light-bg);
  color: var(--light-text);
}

.values-section {
  max-width: var(--max-width);
  margin: 0 auto 4rem;
  padding: 0 20px;
  text-align: center;
}

.values-section h2 {
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
}

.values-section h2:after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background-color: var(--accent-color);
  margin: 0.5rem auto 0;
}

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

.value-card {
  background-color: var(--light-bg);
  border-radius: var(--border-radius);
  padding: 2rem;
  transition: var(--transition);
}

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

.value-card i {
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.value-card h3 {
  margin-bottom: 1rem;
}

.value-card p {
  color: var(--light-text);
  margin: 0;
  font-size: 0.95rem;
}

/* Contact Page */
.contact-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: var(--max-width);
  margin: 0 auto 4rem;
  padding: 0 20px;
}

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

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

.contact-info h3, .contact-form-container h3 {
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.contact-info h3:after, .contact-form-container h3:after {
  content: '';
  position: absolute;
  width: 50px;
  height: 3px;
  background-color: var(--accent-color);
  bottom: 0;
  left: 0;
}

.contact-details {
  margin-top: 2rem;
}

.contact-item {
  display: flex;
  margin-bottom: 1.5rem;
}

.contact-item i {
  font-size: 1.5rem;
  color: var(--accent-color);
  margin-right: 1rem;
  margin-top: 0.25rem;
}

.contact-item h4 {
  margin-bottom: 0.25rem;
  font-size: 1.1rem;
}

.contact-item p {
  margin: 0;
  color: var(--light-text);
}

.social-connect {
  margin-top: 2rem;
}

.social-connect h4 {
  margin-bottom: 1rem;
}

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

.contact-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

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

.contact-form textarea {
  resize: vertical;
}

.map-section {
  max-width: var(--max-width);
  margin: 0 auto 4rem;
  padding: 0 20px;
  text-align: center;
}

.map-section h3 {
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.map-section h3:after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background-color: var(--accent-color);
  margin: 0.5rem auto 0;
}

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

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

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

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

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

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

.modal h3 {
  margin-bottom: 1rem;
}

.modal-btn {
  margin-top: 1.5rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero h2 {
    font-size: 2rem;
  }
  
  .logo-container {
    justify-content: center;
  }
  
  .font-size-control {
    position: static;
    display: flex;
    justify-content: center;
    margin-top: 1rem;
  }
  
  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  nav ul li {
    margin: 0 10px 10px;
  }
  
  .post-navigation {
    flex-direction: column;
    gap: 1rem;
  }
  
  .cookie-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .cookie-buttons button {
    width: 100%;
  }
}
