/* Base Styles */
:root {
  --primary-color: #4a6fa5;
  --primary-dark: #375d93;
  --primary-light: #7696c8;
  --secondary-color: #3d9970;
  --accent-color: #ff7e5f;
  --text-dark: #333333;
  --text-medium: #666666;
  --text-light: #999999;
  --bg-light: #f8f9fa;
  --bg-medium: #e9ecef;
  --bg-dark: #495057;
  --white: #ffffff;
  --black: #000000;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --border-radius: 6px;
  --transition: all 0.3s ease;
  --container-width: 1200px;
  --header-height: 80px;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
  overflow-x: hidden;
}

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

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

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

ul {
  list-style: none;
}

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

/* Button Styles */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 12px 24px;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

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

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

.btn-secondary {
  background-color: var(--white);
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.btn-secondary:hover {
  background-color: var(--bg-light);
  color: var(--primary-dark);
}

.read-more {
  display: inline-block;
  font-weight: 600;
  color: var(--primary-color);
  position: relative;
  padding-right: 20px;
}

.read-more:after {
  content: '→';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: var(--transition);
}

.read-more:hover:after {
  right: -5px;
}

/* Header Styles */
header {
  background-color: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
}

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

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

nav ul {
  display: flex;
}

nav ul li {
  margin-left: 30px;
}

nav ul li a {
  color: var(--text-dark);
  font-weight: 500;
  padding: 10px 0;
  position: relative;
}

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

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

/* Hero Section */
.hero {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero:before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
}

.hero:after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 30px;
  opacity: 0.9;
}

/* Featured Posts Section */
.featured-posts {
  padding: 80px 0;
}

.featured-posts h2 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 2.2rem;
  position: relative;
}

.featured-posts h2:after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--primary-color);
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

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

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

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

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

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

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

.post-card p {
  padding: 0 20px;
  color: var(--text-medium);
  margin-bottom: 15px;
}

.post-card .read-more {
  margin: 0 20px 20px;
  display: inline-block;
}

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

/* Newsletter Section */
.newsletter {
  background-color: var(--bg-light);
  padding: 80px 0;
  text-align: center;
}

.newsletter h2 {
  margin-bottom: 15px;
  font-size: 2rem;
}

.newsletter p {
  color: var(--text-medium);
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

#newsletter-form input {
  flex: 1;
  padding: 12px 15px;
  border: 1px solid var(--bg-medium);
  border-radius: var(--border-radius) 0 0 var(--border-radius);
  font-size: 1rem;
}

#newsletter-form button {
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

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

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

.footer-logo img {
  height: 50px;
  margin-bottom: 15px;
}

.footer-logo p {
  opacity: 0.8;
}

.footer-links h3 {
  margin-bottom: 20px;
  font-size: 1.2rem;
  position: relative;
}

.footer-links h3:after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--primary-light);
}

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

.footer-links ul li a {
  color: var(--bg-medium);
  transition: var(--transition);
}

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

.footer-social h3 {
  margin-bottom: 20px;
  font-size: 1.2rem;
  position: relative;
}

.footer-social h3:after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--primary-light);
}

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

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

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

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  opacity: 0.7;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

/* Cookie Notice */
.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--bg-dark);
  color: var(--white);
  padding: 15px;
  z-index: 1001;
  display: none;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

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

.cookie-content p {
  margin-bottom: 15px;
  max-width: 800px;
}

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

.cookie-buttons button {
  padding: 8px 16px;
  font-size: 0.9rem;
}

.cookie-link {
  font-size: 0.85rem;
  opacity: 0.8;
}

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

/* Page Header */
.page-header {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 60px 0;
  text-align: center;
}

.page-header h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.page-header p {
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
}

/* Blog Page Styles */
.blog-content {
  padding: 80px 0;
}

.blog-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.blog-post {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 30px;
  background-color: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

.blog-post .post-image {
  height: 100%;
}

.blog-post .post-content {
  padding: 20px 30px 20px 0;
}

.blog-post h2 {
  font-size: 1.6rem;
  margin-bottom: 10px;
  line-height: 1.3;
}

.blog-post .post-meta {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.blog-post p {
  color: var(--text-medium);
  margin-bottom: 20px;
}

/* About Page Styles */
.about-content {
  padding: 80px 0;
}

.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-bottom: 80px;
  align-items: center;
}

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

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.about-text p {
  margin-bottom: 20px;
  color: var(--text-medium);
}

.team-section {
  margin-bottom: 80px;
}

.team-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 50px;
  position: relative;
}

.team-section h2:after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
}

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

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

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

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

.team-member h3 {
  margin-top: 20px;
  font-size: 1.2rem;
}

.team-member p {
  padding: 0 20px;
  margin-bottom: 20px;
  color: var(--text-medium);
}

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

.values-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 50px;
  position: relative;
}

.values-section h2:after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
}

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

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

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

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

.value-card h3 {
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.value-card p {
  color: var(--text-medium);
}

/* Contact Page Styles */
.contact-content {
  padding: 80px 0;
}

.contact-info-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-bottom: 80px;
}

.contact-info h2,
.contact-form h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.contact-info p {
  margin-bottom: 30px;
  color: var(--text-medium);
}

.info-items {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.info-icon {
  color: var(--primary-color);
  width: 24px;
  height: 24px;
  margin-top: 3px;
}

.info-text h3 {
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.info-text p {
  margin-bottom: 5px;
  color: var(--text-medium);
}

.social-connect {
  margin-top: 40px;
}

.social-connect h3 {
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.contact-form {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--shadow);
}

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--bg-medium);
  border-radius: var(--border-radius);
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(74, 111, 165, 0.2);
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.form-checkbox input {
  width: auto;
  margin-top: 5px;
}

.form-checkbox label {
  font-size: 0.9rem;
  color: var(--text-medium);
}

.map-section {
  padding-bottom: 80px;
}

.map-section h2 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 30px;
}

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

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

/* CTA Section */
.cta-section {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}

.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.cta-section p {
  opacity: 0.9;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Blog Post Full Styles */
.blog-post-full {
  padding: 80px 0;
}

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

.post-header h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  line-height: 1.3;
}

.post-meta {
  color: var(--text-light);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

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

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

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

.post-content h2 {
  font-size: 1.8rem;
  margin: 40px 0 20px;
}

.post-content h3 {
  font-size: 1.4rem;
  margin: 30px 0 15px;
}

.post-content h4 {
  font-size: 1.2rem;
  margin: 25px 0 15px;
}

.post-content p {
  margin-bottom: 20px;
  color: var(--text-medium);
}

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

.post-content ul li,
.post-content ol li {
  margin-bottom: 10px;
  color: var(--text-medium);
}

.post-content ul {
  list-style-type: disc;
}

.post-content ol {
  list-style-type: decimal;
}

.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;
  background-color: var(--bg-light);
  color: var(--text-medium);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.9rem;
  transition: var(--transition);
}

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

.post-author {
  margin-top: 60px;
  display: flex;
  align-items: center;
  gap: 20px;
  background-color: var(--bg-light);
  padding: 30px;
  border-radius: var(--border-radius);
}

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

.author-bio h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.author-bio p {
  color: var(--text-medium);
  font-size: 0.95rem;
}

.post-navigation {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.post-nav-link {
  padding: 20px;
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

.post-nav-link span {
  display: block;
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 5px;
}

.post-nav-link a {
  font-weight: 600;
  font-size: 1.1rem;
}

.post-nav-link.prev {
  text-align: left;
}

.post-nav-link.next {
  text-align: right;
}

.related-posts {
  margin-top: 80px;
}

.related-posts h2 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 40px;
  position: relative;
}

.related-posts h2:after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
}

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

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

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

.related-post .post-image {
  height: 180px;
}

.related-post h3 {
  padding: 20px 20px 10px;
  font-size: 1.2rem;
  line-height: 1.4;
}

.related-post .read-more {
  margin: 0 20px 20px;
  display: inline-block;
}

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

.newsletter-form-inline input {
  flex: 1;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-radius: var(--border-radius) 0 0 var(--border-radius);
  font-size: 1rem;
}

.newsletter-form-inline input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.newsletter-form-inline button {
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  background-color: var(--white);
  color: var(--primary-color);
}

.newsletter-form-inline button:hover {
  background-color: var(--bg-light);
}

/* Stats Box */
.stats-box {
  background-color: var(--bg-light);
  border-left: 4px solid var(--primary-color);
  padding: 20px 25px;
  margin: 30px 0;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.stats-box h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.stats-box p {
  margin-bottom: 10px;
  font-weight: 500;
}

.stats-box p:last-child {
  margin-bottom: 0;
}

/* Custom Frame for Images */
.custom-frame {
  position: relative;
  padding: 10px;
  background-color: var(--white);
  box-shadow: var(--shadow);
}

.custom-frame:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 2px solid var(--primary-light);
  opacity: 0.3;
  pointer-events: none;
}

.custom-frame:after {
  content: '';
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 1px dashed var(--primary-color);
  opacity: 0.2;
  pointer-events: none;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1100;
  justify-content: center;
  align-items: center;
}

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

.close-modal {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-light);
  transition: var(--transition);
}

.close-modal:hover {
  color: var(--text-dark);
}

.modal-icon {
  margin-bottom: 20px;
  color: var(--secondary-color);
}

.modal h2 {
  margin-bottom: 15px;
  font-size: 1.8rem;
}

.modal p {
  margin-bottom: 25px;
  color: var(--text-medium);
}

/* Responsive Styles */
@media (max-width: 991px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .about-intro {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .contact-info-form {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  header {
    height: auto;
    padding: 15px 0;
  }
  
  header .container {
    flex-direction: column;
    gap: 15px;
  }
  
  nav ul {
    margin-top: 10px;
    justify-content: center;
  }
  
  nav ul li {
    margin: 0 10px;
  }
  
  .hero {
    padding: 60px 0;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .blog-post {
    grid-template-columns: 1fr;
  }
  
  .blog-post .post-image {
    height: 200px;
  }
  
  .blog-post .post-content {
    padding: 20px;
  }
  
  .post-navigation {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-logo {
    margin: 0 auto;
  }
  
  .footer-links h3:after,
  .footer-social h3:after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .social-icons {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .post-header h1 {
    font-size: 1.8rem;
  }
  
  .post-meta {
    flex-direction: column;
    gap: 5px;
  }
  
  .post-author {
    flex-direction: column;
    text-align: center;
  }
  
  #newsletter-form {
    flex-direction: column;
  }
  
  #newsletter-form input,
  #newsletter-form button,
  .newsletter-form-inline input,
  .newsletter-form-inline button {
    width: 100%;
    border-radius: var(--border-radius);
  }
  
  #newsletter-form button,
  .newsletter-form-inline button {
    margin-top: 10px;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
}
