/* 
Pizza73 Blog - Main Stylesheet
*/

/* ===== Base Styles ===== */
:root {
  --primary-color: #e63c30;
  --primary-dark: #c42b1f;
  --primary-light: #ff6c62;
  --secondary-color: #2c3e50;
  --accent-color: #f39c12;
  --text-color: #333333;
  --text-light: #666666;
  --text-dark: #1a1a1a;
  --background-color: #ffffff;
  --background-light: #f5f5f5;
  --background-dark: #e0e0e0;
  --success-color: #27ae60;
  --error-color: #e74c3c;
  --border-color: #dddddd;
  --border-radius: 4px;
  --box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  --transition: all 0.3s ease;
  --container-width: 1200px;
  --header-height: 80px;
  --footer-background: #2c3e50;
  --footer-text: #ecf0f1;
}

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--background-color);
  font-size: 16px;
}

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

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

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

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}

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

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

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-type: none;
}

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

/* Font size increase functionality */
.font-size-increased body {
  font-size: 18px;
}

.font-size-increased h1 {
  font-size: 2.75rem;
}

.font-size-increased h2 {
  font-size: 2.25rem;
}

.font-size-increased h3 {
  font-size: 1.75rem;
}

.font-size-increased h4 {
  font-size: 1.5rem;
}

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

/* ===== Header ===== */
header {
  background-color: var(--background-color);
  box-shadow: var(--box-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: 60px;
  width: auto;
}

#font-size-increase {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--background-light);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 0.5rem 1rem;
  cursor: pointer;
  font-weight: bold;
  transition: var(--transition);
  margin-right: 1rem;
}

#font-size-increase:hover {
  background-color: var(--background-dark);
}

#font-size-increase svg {
  width: 18px;
  height: 18px;
}

/* Navigation */
.main-nav {
  display: flex;
  gap: 1.5rem;
}

.main-nav a {
  padding: 0.5rem;
  color: var(--text-color);
  font-weight: 600;
  position: relative;
}

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

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

.main-nav a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-color);
}

/* ===== Hero Section ===== */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/1.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 5rem 1rem;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: white;
}

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

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

.page-header h1 {
  margin-bottom: 0.5rem;
}

.page-header p {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 0;
}

/* ===== Buttons ===== */
.button, .cta-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

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

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

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

.button.outline:hover {
  background-color: var(--primary-color);
  color: white;
}

.cta-button {
  background-color: var(--accent-color);
  color: white;
  font-size: 1.1rem;
}

.cta-button:hover {
  background-color: #e67e22;
  color: white;
}

.cta-button.outline {
  background-color: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
}

.cta-button.outline:hover {
  background-color: var(--accent-color);
  color: white;
}

/* ===== Featured Posts ===== */
.featured-posts {
  padding: 3rem 0;
}

.featured-posts h2 {
  text-align: center;
  margin-bottom: 2rem;
}

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

.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 5px 15px rgba(0, 0, 0, 0.1);
}

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

.post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.post-content {
  padding: 1.5rem;
}

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

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

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

.read-more:hover {
  color: var(--primary-dark);
}

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

/* ===== About Preview ===== */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 3rem 0;
  background-color: var(--background-light);
  margin: 3rem 0;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.about-content {
  padding: 0 2rem;
}

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

/* ===== Order CTA ===== */
.order-cta {
  text-align: center;
  padding: 3rem 0;
}

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

.order-cta p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

/* ===== Blog Posts ===== */
.blog-posts {
  width: 70%;
  padding-right: 2rem;
}

.blog-post-card {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  margin-bottom: 3rem;
  background-color: var(--background-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

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

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

/* ===== Sidebar ===== */
.sidebar {
  width: 30%;
}

.sidebar-widget {
  margin-bottom: 2.5rem;
  background-color: var(--background-light);
  border-radius: var(--border-radius);
  padding: 1.5rem;
}

.sidebar-widget h3 {
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.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: 0.75rem;
  position: relative;
  padding-left: 1.25rem;
}

.category-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary-color);
}

.category-list a {
  color: var(--text-color);
}

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

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

/* ===== Single Blog Post ===== */
main {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 2rem 0;
}

.blog-post {
  width: 70%;
}

.blog-post-header {
  margin-bottom: 2rem;
}

.blog-post-header h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.blog-post-header .post-meta {
  display: flex;
  gap: 1.5rem;
  color: var(--text-light);
}

.blog-post-featured-image {
  margin-bottom: 2rem;
  border-radius: var(--border-radius);
  overflow: hidden;
}

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

.blog-post-content {
  line-height: 1.8;
}

.blog-post-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
}

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

.blog-post-content ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  list-style-type: disc;
}

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

.highlight-box {
  background-color: var(--background-light);
  border-left: 4px solid var(--primary-color);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.highlight-box h3 {
  margin-top: 0;
  color: var(--primary-color);
}

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

.cta-box {
  background-color: var(--primary-light);
  color: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  margin: 2.5rem 0;
  text-align: center;
}

.cta-box h3 {
  color: white;
  margin-top: 0;
}

.cta-box p {
  margin-bottom: 1.5rem;
}

.cta-box .cta-button {
  background-color: white;
  color: var(--primary-color);
}

.cta-box .cta-button:hover {
  background-color: var(--background-light);
}

.blog-post-navigation {
  display: flex;
  justify-content: space-between;
  margin: 3rem 0;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.post-nav-prev, .post-nav-next {
  max-width: 45%;
}

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

.nav-label {
  display: block;
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.nav-title {
  font-weight: 600;
}

.related-posts {
  margin-top: 3rem;
}

.related-posts h3 {
  margin-bottom: 1.5rem;
}

.related-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.related-post {
  color: var(--text-color);
  transition: var(--transition);
}

.related-post:hover {
  transform: translateY(-5px);
}

.related-post img {
  border-radius: var(--border-radius);
  margin-bottom: 0.75rem;
}

.related-post h4 {
  font-size: 1.1rem;
  margin-bottom: 0;
}

/* ===== About Page ===== */
.about-section {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

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

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

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

.value-icon {
  color: var(--primary-color);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

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

.value-card p {
  margin-bottom: 0;
}

.about-image-section img {
  border-radius: var(--border-radius);
  height: 100%;
  object-fit: cover;
}

.team-section {
  margin-bottom: 4rem;
}

.team-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

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

.team-card {
  text-align: center;
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-card img {
  width: 100%;
  border-radius: 50%;
  margin-bottom: 1.5rem;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.team-card h3 {
  margin-bottom: 0.25rem;
}

.team-card p:first-of-type {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.facts-section {
  margin-bottom: 4rem;
  background-color: var(--background-light);
  padding: 3rem;
  border-radius: var(--border-radius);
}

.facts-section h2 {
  text-align: center;
  margin-bottom: 2.5rem;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

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

.fact-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.fact-card p {
  margin-bottom: 0;
}

.cta-section {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/5.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 4rem 2rem;
  border-radius: var(--border-radius);
  text-align: center;
}

.cta-section h2 {
  color: white;
  margin-bottom: 1.5rem;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

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

/* ===== Contact Page ===== */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.contact-info {
  background-color: var(--background-light);
  padding: 2rem;
  border-radius: var(--border-radius);
}

.contact-info h2 {
  margin-bottom: 2rem;
}

.info-card {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.info-icon {
  margin-right: 1rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
}

.info-content h3 {
  margin-bottom: 0.25rem;
  font-size: 1.2rem;
}

.info-content p {
  margin-bottom: 0;
}

.social-contact {
  margin-top: 2.5rem;
}

.social-contact h3 {
  margin-bottom: 1rem;
}

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

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

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

.contact-form-section h2 {
  margin-bottom: 2rem;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group:nth-child(5), .form-group:nth-child(6), .form-group:nth-child(7) {
  grid-column: span 2;
}

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

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

.form-group textarea {
  resize: vertical;
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.checkbox-group input {
  width: auto;
}

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

.submit-button {
  grid-column: span 2;
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.submit-button:hover {
  background-color: var(--primary-dark);
}

.map-section {
  margin-bottom: 4rem;
}

.map-section h2 {
  margin-bottom: 1.5rem;
}

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

.map-placeholder {
  height: 100%;
  background-color: var(--background-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.faq-section {
  margin-bottom: 4rem;
}

.faq-section h2 {
  margin-bottom: 2rem;
  text-align: center;
}

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

.faq-card {
  background-color: var(--background-light);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

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

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

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

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

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

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

.thank-you-message {
  text-align: center;
}

.success-icon {
  color: var(--success-color);
  margin-bottom: 1.5rem;
}

.thank-you-message h2 {
  margin-bottom: 1rem;
}

.thank-you-message p {
  margin-bottom: 1.5rem;
}

.close-button {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.close-button:hover {
  background-color: var(--primary-dark);
}

/* ===== Footer ===== */
footer {
  background-color: var(--footer-background);
  color: var(--footer-text);
  padding: 4rem 0 2rem;
  margin-top: 3rem;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-column h4 {
  color: white;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-column h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--primary-color);
}

.footer-logo {
  width: 100px;
  margin-bottom: 1rem;
}

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

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

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

.footer-column address {
  font-style: normal;
  line-height: 1.6;
}

.footer-column address a {
  color: var(--footer-text);
}

.footer-column address a:hover {
  color: var(--primary-light);
}

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

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

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: var(--footer-text);
  font-size: 0.9rem;
}

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

/* ===== Cookie Consent ===== */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--background-color);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: none;
}

.cookie-content {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 1.5rem;
}

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

.cookie-button {
  padding: 0.5rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  background: none;
  cursor: pointer;
  transition: var(--transition);
}

.cookie-button.primary {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.cookie-button.primary:hover {
  background-color: var(--primary-dark);
}

.cookie-button:hover {
  background-color: var(--background-light);
}

.cookie-policy {
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* ===== Responsive Styles ===== */
@media (max-width: 1200px) {
  .container {
    padding: 0 2rem;
  }
  
  .facts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .about-preview {
    grid-template-columns: 1fr;
  }
  
  .about-content {
    padding: 2rem;
  }
  
  .footer-columns {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .blog-posts {
    width: 65%;
  }
  
  .sidebar {
    width: 35%;
  }
  
  .blog-post {
    width: 65%;
  }
  
  .about-section {
    grid-template-columns: 1fr;
  }
  
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  header .container {
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  .logo {
    margin-right: auto;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .main-nav {
    flex-direction: column;
    width: 100%;
    display: none;
    padding: 1rem 0;
  }
  
  .main-nav.active {
    display: flex;
  }
  
  .post-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
  
  .blog-post-card {
    grid-template-columns: 1fr;
  }
  
  .blog-post-card .post-image {
    height: 200px;
  }
  
  main {
    flex-direction: column;
  }
  
  .blog-posts, .sidebar, .blog-post {
    width: 100%;
    padding-right: 0;
  }
  
  .related-posts-grid {
    grid-template-columns: 1fr;
  }
  
  .team-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  }
  
  .facts-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-columns {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .footer-links {
    justify-content: center;
  }
  
  .contact-form {
    grid-template-columns: 1fr;
  }
  
  .form-group:nth-child(5), .form-group:nth-child(6), .form-group:nth-child(7) {
    grid-column: 1;
  }
  
  .submit-button {
    grid-column: 1;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .blog-post-navigation {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .post-nav-prev, .post-nav-next {
    max-width: 100%;
    text-align: left;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
}
