/* 
 * ImmobilienWert - Stylesheets
 * Version: 1.0
 * Description: Moderne Styles für einen Blog über Immobilieninvestitionen
 */

/* Base Styles & Variables */
:root {
  --primary-color: #2c3e50;
  --secondary-color: #3498db;
  --accent-color: #e67e22;
  --success-color: #2ecc71;
  --warning-color: #f39c12;
  --error-color: #e74c3c;
  --text-color: #333333;
  --text-light: #777777;
  --background-color: #ffffff;
  --background-alt: #f9f9f9;
  --border-color: #dddddd;
  --shadow-color: rgba(0, 0, 0, 0.1);
  
  --font-primary: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Oxygen, Ubuntu, Cantarell, sans-serif;
  --font-headings: 'Playfair Display', Georgia, serif;
  
  --border-radius: 6px;
  --transition: all 0.3s ease;
  
  --container-width: 1200px;
  --container-padding: 20px;
}

/* Reset & Normalization */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

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

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

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

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

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  outline: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  line-height: 1.3;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

h1 {
  font-size: 4.2rem;
}

h2 {
  font-size: 3.2rem;
}

h3 {
  font-size: 2.4rem;
}

p {
  margin-bottom: 1.6rem;
}

section {
  padding: 8rem 0;
}

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

/* Buttons */
.btn-primary, .btn-secondary, .btn-tertiary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem 2.4rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 1.4rem;
}

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

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

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

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

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

.btn-tertiary:hover {
  color: var(--text-color);
}

/* Header & Navigation */
header {
  background-color: white;
  box-shadow: 0 2px 10px var(--shadow-color);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1.5rem 0;
}

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

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 5rem;
  width: auto;
}

nav ul {
  display: flex;
}

nav ul li:not(:last-child) {
  margin-right: 3rem;
}

nav ul li a {
  font-weight: 500;
  font-size: 1.6rem;
  color: var(--text-color);
  position: relative;
  padding-bottom: 0.5rem;
}

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

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

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

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.mobile-menu-toggle span {
  width: 3rem;
  height: 3px;
  background-color: var(--primary-color);
  margin-bottom: 5px;
  border-radius: 3px;
  transition: var(--transition);
}

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

.hero h1 {
  font-size: 5.6rem;
  margin-bottom: 2rem;
  color: white;
}

.hero p {
  font-size: 2rem;
  max-width: 700px;
  margin: 0 auto 3rem;
}

/* "What You'll Learn" Section */
.what-you-learn {
  background-color: var(--background-alt);
}

.what-you-learn h2 {
  text-align: center;
  margin-bottom: 5rem;
}

.learn-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 4rem;
}

.learn-list li {
  display: flex;
  align-items: flex-start;
}

.learn-list .icon {
  background-color: var(--secondary-color);
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.learn-list .icon svg {
  width: 2.4rem;
  height: 2.4rem;
  color: white;
}

.learn-list .content h3 {
  margin-bottom: 1rem;
}

.learn-list .content p {
  color: var(--text-light);
  margin-bottom: 0;
}

/* Featured Posts */
.featured-posts h2 {
  text-align: center;
  margin-bottom: 5rem;
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 3rem;
  margin-bottom: 4rem;
}

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

.post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px var(--shadow-color);
}

.post-image {
  height: 220px;
  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-content {
  padding: 2rem;
}

.post-content h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.post-content p {
  color: var(--text-light);
  margin-bottom: 2rem;
}

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

/* Newsletter */
.newsletter {
  background-color: var(--primary-color);
  color: white;
  text-align: center;
}

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

.newsletter p {
  max-width: 700px;
  margin: 0 auto 3rem;
}

.newsletter-form {
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-form .form-group {
  display: flex;
  margin-bottom: 1.5rem;
}

.newsletter-form input[type="email"] {
  flex: 1;
  padding: 1.2rem 1.5rem;
  border: none;
  border-radius: var(--border-radius) 0 0 var(--border-radius);
  background-color: white;
}

.newsletter-form button {
  padding: 0 2rem;
  border: none;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  background-color: var(--accent-color);
  color: white;
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-form button:hover {
  background-color: #d35400;
}

.form-check {
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-check input[type="checkbox"] {
  margin-right: 1rem;
}

.form-check label {
  font-size: 1.4rem;
}

.form-check a {
  color: var(--accent-color);
}

/* Footer */
footer {
  background-color: var(--primary-color);
  color: white;
  padding: 6rem 0 3rem;
}

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

.footer-logo {
  margin-bottom: 2rem;
}

.footer-logo img {
  height: 5rem;
  width: auto;
}

.footer-col h3 {
  color: white;
  margin-bottom: 2rem;
  font-size: 1.8rem;
}

.footer-col ul li {
  margin-bottom: 1rem;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-col ul li a:hover {
  color: white;
}

.footer-col address p {
  margin-bottom: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

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

.footer-col address a:hover {
  color: white;
}

.social-icons {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
}

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

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

.social-icons svg {
  width: 1.8rem;
  height: 1.8rem;
}

.copyright {
  text-align: center;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.5);
}

.reg-number {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 1rem;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: white;
  box-shadow: 0 -5px 20px var(--shadow-color);
  padding: 2rem;
  z-index: 1000;
  display: flex;
  align-items: center;
  transform: translateY(100%);
  transition: transform 0.4s ease-in-out;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

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

.cookie-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* Blog Page Styles */
.page-header {
  background-color: var(--primary-color);
  color: white;
  text-align: center;
  padding: 8rem 0;
}

.page-header h1 {
  color: white;
  margin-bottom: 1.5rem;
}

.page-header p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.8rem;
}

.blog-content {
  padding-top: 6rem;
}

.blog-filter {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5rem;
  flex-wrap: wrap;
  gap: 2rem;
}

.search-box {
  display: flex;
  flex: 1;
  max-width: 500px;
}

.search-box input {
  flex: 1;
  padding: 1.2rem 1.5rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius) 0 0 var(--border-radius);
}

.search-box button {
  padding: 0 1.5rem;
  background-color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  cursor: pointer;
  color: white;
}

.search-box button svg {
  width: 1.8rem;
  height: 1.8rem;
}

.category-filter select {
  padding: 1.2rem 4rem 1.2rem 1.5rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  background-color: white;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1.5rem center;
  background-size: 1.5rem;
  cursor: pointer;
}

.blog-posts {
  margin-bottom: 5rem;
}

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

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

.blog-post .post-content {
  padding: 3rem;
}

.post-meta {
  display: flex;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.post-meta .category {
  color: var(--secondary-color);
  font-weight: 600;
}

.post-meta .date {
  color: var(--text-light);
}

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

.pagination a, .pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  color: var(--text-color);
  font-weight: 600;
  transition: var(--transition);
}

.pagination .next {
  width: auto;
  padding: 0 1.5rem;
  gap: 0.8rem;
}

.pagination .next svg {
  width: 1.6rem;
  height: 1.6rem;
}

.pagination a:hover, .pagination a.current {
  background-color: var(--secondary-color);
  color: white;
  border-color: var(--secondary-color);
}

/* About Page Styles */
.about-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-text p {
  margin-bottom: 2rem;
}

.about-image {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 10px 30px var(--shadow-color);
}

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

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

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

.value-card .icon {
  width: 6rem;
  height: 6rem;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(52, 152, 219, 0.1);
  border-radius: 50%;
}

.value-card .icon svg {
  width: 3rem;
  height: 3rem;
  color: var(--secondary-color);
}

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

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

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

.team-card {
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 5px 20px var(--shadow-color);
  text-align: center;
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px var(--shadow-color);
}

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

.team-card h3 {
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

.team-card p {
  padding: 0 2rem;
}

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

.team-card p:last-child {
  padding-bottom: 2rem;
  color: var(--text-light);
}

.testimonials {
  padding: 10rem 0;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/testimonial-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
  text-align: center;
}

.testimonials h2 {
  color: white;
  margin-bottom: 5rem;
}

.testimonial-slider {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.testimonial {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  padding: 3rem;
  position: relative;
}

.testimonial .quote {
  color: var(--secondary-color);
  margin-bottom: 2rem;
}

.testimonial p {
  font-style: italic;
  margin-bottom: 2rem;
}

.testimonial .author .name {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.testimonial .author .role {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
  font-size: 1.4rem;
}

.partners {
  text-align: center;
}

.partners h2 {
  margin-bottom: 5rem;
}

.partner-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 4rem;
  align-items: center;
}

.partner-logos img {
  filter: grayscale(1);
  opacity: 0.6;
  transition: var(--transition);
  margin: 0 auto;
  max-height: 80px;
}

.partner-logos img:hover {
  filter: grayscale(0);
  opacity: 1;
}

.cta-section {
  background-color: var(--primary-color);
  color: white;
  text-align: center;
}

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

.cta-section p {
  max-width: 600px;
  margin: 0 auto 3rem;
}

/* Contact Page Styles */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
}

.contact-info h2, .contact-form-container h2 {
  margin-bottom: 3rem;
}

.info-item {
  display: flex;
  margin-bottom: 3rem;
}

.info-item .icon {
  width: 4rem;
  height: 4rem;
  background-color: rgba(52, 152, 219, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
}

.info-item .icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--secondary-color);
}

.info-item .content h3 {
  margin-bottom: 0.5rem;
  font-size: 1.8rem;
}

.info-item .content p {
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

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

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

.form-group {
  margin-bottom: 0;
}

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

.form-group.checkbox-group {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
}

.form-group.checkbox-group input[type="checkbox"] {
  margin-right: 1rem;
}

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

.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 1.2rem 1.5rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  background-color: white;
  transition: var(--transition);
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
}

.form-submit {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 2rem;
}

.map-section {
  background-color: var(--background-alt);
}

.map-section h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.map-container {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 5px 20px var(--shadow-color);
}

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

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

.accordion-item {
  margin-bottom: 2rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 2rem;
  background-color: white;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.8rem;
  text-align: left;
  transition: var(--transition);
  border: none;
}

.accordion-header:hover {
  background-color: var(--background-alt);
}

.accordion-header .icon {
  transition: var(--transition);
}

.accordion-header.active .icon {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-content.active {
  max-height: 500px;
}

.accordion-content p {
  padding: 2rem;
  border-top: 1px solid var(--border-color);
  margin-bottom: 0;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.modal.show {
  display: flex;
}

.modal-content {
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 30px var(--shadow-color);
  width: 100%;
  max-width: 600px;
  position: relative;
  animation: modalFadeIn 0.4s;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

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

.success-icon {
  width: 8rem;
  height: 8rem;
  background-color: rgba(46, 204, 113, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 3rem;
}

.success-icon svg {
  width: 4rem;
  height: 4rem;
  color: var(--success-color);
}

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

.thank-you-message p {
  color: var(--text-light);
  margin-bottom: 3rem;
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
  html {
    font-size: 60%;
  }
  
  .hero {
    padding: 8rem 0;
  }
  
  .hero h1 {
    font-size: 4.2rem;
  }
  
  .about-grid, .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .about-image {
    margin-top: 3rem;
    order: -1;
  }
  
  .blog-post {
    grid-template-columns: 1fr;
  }
  
  .blog-post .post-image {
    height: 250px;
  }
}

@media screen and (max-width: 768px) {
  nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: white;
    box-shadow: 0 5px 10px var(--shadow-color);
    padding: 2rem;
  }
  
  nav.active {
    display: block;
  }
  
  nav ul {
    flex-direction: column;
  }
  
  nav ul li:not(:last-child) {
    margin-right: 0;
    margin-bottom: 1.5rem;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .blog-filter {
    flex-direction: column;
  }
  
  .search-box {
    max-width: 100%;
  }
  
  .newsletter-form .form-group {
    flex-direction: column;
  }
  
  .newsletter-form input[type="email"] {
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
  }
  
  .newsletter-form button {
    border-radius: var(--border-radius);
    padding: 1.2rem 1.5rem;
  }
  
  .contact-form {
    grid-template-columns: 1fr;
  }
  
  .hero h1 {
    font-size: 3.6rem;
  }
}

@media screen and (max-width: 576px) {
  html {
    font-size: 55%;
  }
  
  h1 {
    font-size: 3.6rem;
  }
  
  h2 {
    font-size: 2.8rem;
  }
  
  section {
    padding: 6rem 0;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-buttons button {
    width: 100%;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
