/* ============================================================
   3AV CONSULTORIA LTDA - Company Website Styles
   Template 1: "Navy & Gold" — Full-Screen Parallax, Centered Hero
   Primary: #003366 | Accent: #FFD700 | Dark: #002244 | Light: #f8f9fa
   Font: Inter
   ============================================================ */

/* --- Font --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --primary: #003366;
  --accent: #FFD700;
  --dark: #002244;
  --light-bg: #f8f9fa;
  --white: #ffffff;
  --text: #333333;
  --text-light: #666666;
  --bs-font-sans-serif: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

/* --- Typography --- */
.display-1 { font-size: 3.5rem; font-weight: 800; line-height: 1.15; }
.display-2 { font-size: 2.75rem; font-weight: 700; line-height: 1.2; }
.display-4 { font-size: 1.25rem; font-weight: 400; line-height: 1.6; }
.display-5 { font-size: 1.1rem; font-weight: 500; line-height: 1.6; }
.display-7 { font-size: 0.95rem; font-weight: 400; line-height: 1.5; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif;
  color: var(--dark);
}

/* --- Navbar --- */
.custom-navbar {
  background: rgba(255, 255, 255, 0.97) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.custom-navbar.scrolled {
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.12);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.navbar-brand img {
  height: 3rem;
  width: auto;
}

.navbar-caption {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark) !important;
  letter-spacing: 0.5px;
}

.navbar-toggler {
  border: none;
  color: var(--primary);
  padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.nav-link {
  padding: 0.5rem 1rem;
  color: var(--text) !important;
  font-size: 1.05rem;
  font-weight: 500;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary) !important;
  background: rgba(0, 51, 102, 0.06);
}

.little-radius { border-radius: 20px; }

@media (min-width: 992px) {
  .navbar-buttons {
    margin-left: 1rem;
  }
}

.navbar-buttons .btn {
  display: inline-block;
  padding: 0.65rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 30px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-black {
  background: var(--dark);
  color: var(--white) !important;
  border: 2px solid var(--dark);
}

.btn-black:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 34, 68, 0.3);
}

.btn-primary-btn {
  background: var(--primary);
  color: var(--white) !important;
  border: 2px solid var(--primary);
}

.btn-primary-btn:hover {
  background: var(--dark);
  border-color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 51, 102, 0.3);
}

.btn-accent {
  background: var(--accent);
  color: var(--dark) !important;
  border: 2px solid var(--accent);
  font-weight: 700;
}

.btn-accent:hover {
  background: #e6c200;
  border-color: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.btn-outline-light {
  background: transparent;
  color: var(--white) !important;
  border: 2px solid var(--white);
}

.btn-outline-light:hover {
  background: var(--white);
  color: var(--dark) !important;
}

/* --- Hero Full-Screen Parallax --- */
.hero-fullscreen {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 130%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 20, 40, 0.7);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 850px;
  padding: 2rem;
}

.hero-content h2 {
  color: var(--white);
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero-content .btn {
  padding: 0.85rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
}

/* --- Section Spacing --- */
section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.15rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-header.light h2,
.section-header.light p {
  color: var(--white);
}

.divider {
  width: 60px;
  height: 4px;
  background: var(--accent);
  margin: 1rem auto;
  border-radius: 2px;
}

.divider.left {
  margin: 1rem 0;
}

/* --- Icon Features (3-column) --- */
.features-section {
  background: var(--light-bg);
}

.feature-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

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

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: rgba(0, 51, 102, 0.08);
  border-radius: 50%;
  font-size: 2rem;
  color: var(--primary);
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  background: var(--primary);
  color: var(--accent);
  transform: scale(1.05);
}

.feature-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--dark);
}

.feature-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* --- Dark Parallax Section --- */
.parallax-section {
  position: relative;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  padding: 6rem 0;
}

.parallax-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 20, 40, 0.8);
}

.parallax-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  text-align: center;
  max-width: 850px;
  margin: 0 auto;
  padding: 0 1rem;
}

.parallax-content h2 {
  color: var(--white);
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.parallax-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  line-height: 1.9;
}

/* --- Service Cards (3-column) --- */
.service-card {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  padding: 2rem;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  border-top: 4px solid var(--accent);
}

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

.service-card .price-wrapper {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.service-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--dark);
}

.service-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-card .btn {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: var(--primary);
  color: var(--white);
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.service-card .btn:hover {
  background: var(--dark);
}

/* --- FAQ Accordion --- */
.faq-section {
  background: var(--light-bg);
}

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

.accordion-item {
  background: var(--white);
  border-radius: 10px;
  margin-bottom: 0.75rem;
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.accordion-header {
  padding: 0;
  margin: 0;
}

.accordion-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: var(--white);
  border: none;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  text-align: left;
  transition: all 0.3s ease;
}

.accordion-button:hover {
  background: rgba(0, 51, 102, 0.03);
}

.accordion-button i {
  font-size: 1.5rem;
  color: var(--primary);
  transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed) i {
  transform: rotate(180deg);
}

.accordion-body {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-light);
  line-height: 1.8;
  font-size: 0.95rem;
  display: none;
}

.accordion-body.show {
  display: block;
}

/* --- Contact Form --- */
.contact-section {
  background: var(--white);
}

.contact-form-wrapper {
  max-width: 700px;
  margin: 0 auto;
}

.form-control {
  width: 100%;
  padding: 0.85rem 1.25rem;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
  background: var(--light-bg);
  margin-bottom: 1rem;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 51, 102, 0.1);
  background: var(--white);
}

textarea.form-control {
  min-height: 140px;
  resize: vertical;
}

/* --- Dark Contact Info Section --- */
.contact-info-section {
  background: var(--dark);
  color: var(--white);
  padding: 4rem 0;
}

.contact-info-card {
  text-align: center;
  padding: 2rem 1rem;
}

.contact-info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  margin: 0 auto 1.25rem;
  background: var(--primary);
  border-radius: 50%;
  font-size: 1.75rem;
  color: var(--accent);
}

.contact-info-card h4 {
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.contact-info-card p,
.contact-info-card a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  text-decoration: none;
  line-height: 1.7;
}

.contact-info-card a:hover {
  color: var(--accent);
}

/* --- Map --- */
.map-section {
  padding: 0;
}

.map-section iframe {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
}

/* --- Footer --- */
.footer3 {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 3rem 0;
}

.footer3 .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

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

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

.mbr-white {
  color: rgba(255, 255, 255, 0.85);
}

.footer3 .policy-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0;
  margin: 0;
}

.footer3 .policy-links li {
  display: inline;
}

.footer3 .policy-links li:not(:last-child)::after {
  content: "|";
  margin-left: 0.5rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer3 .policy-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer3 .policy-links a:hover {
  color: var(--accent);
}

.footer3 .copyright {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

/* --- About Page --- */
.about-hero {
  background: linear-gradient(135deg, var(--primary), var(--dark));
  padding: 10rem 0 5rem;
  color: var(--white);
  text-align: center;
}

.about-hero h1 {
  color: var(--white);
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.about-hero p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.15rem;
  max-width: 650px;
  margin: 0 auto;
}

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

.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--accent);
  border-radius: 3px;
}

.timeline-item {
  position: relative;
  margin-bottom: 2.5rem;
  padding-left: 2rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.5rem;
  top: 0.5rem;
  width: 14px;
  height: 14px;
  background: var(--accent);
  border-radius: 50%;
  border: 3px solid var(--primary);
}

.timeline-year {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.timeline-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.timeline-text {
  color: var(--text-light);
  line-height: 1.7;
}

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

.value-card {
  background: var(--light-bg);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  border-top: 4px solid var(--accent);
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.value-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.value-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.value-card p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* --- Services Page --- */
.services-hero {
  background: linear-gradient(135deg, var(--primary), var(--dark));
  padding: 10rem 0 5rem;
  color: var(--white);
  text-align: center;
}

.services-hero h1 {
  color: var(--white);
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.services-hero p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.15rem;
  max-width: 650px;
  margin: 0 auto;
}

.service-detail-card {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  padding: 2.5rem;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.service-detail-card:hover {
  box-shadow: 0 8px 35px rgba(0, 0, 0, 0.1);
}

.service-detail-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1.25rem;
}

.service-detail-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--dark);
}

.service-detail-card p {
  color: var(--text-light);
  line-height: 1.8;
}

/* --- Testimonials Page --- */
.testimonials-hero {
  background: linear-gradient(135deg, var(--primary), var(--dark));
  padding: 10rem 0 5rem;
  color: var(--white);
  text-align: center;
}

.testimonials-hero h1 {
  color: var(--white);
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  margin-bottom: 2rem;
  position: relative;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: 0 8px 35px rgba(0, 0, 0, 0.1);
}

.testimonial-card::before {
  content: '\201C';
  font-size: 5rem;
  color: var(--accent);
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-family: Georgia, serif;
  line-height: 1;
  opacity: 0.5;
}

.testimonial-card .quote {
  font-size: 1.1rem;
  color: var(--text);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  padding-top: 1rem;
}

.testimonial-card .author {
  font-weight: 700;
  color: var(--dark);
}

.testimonial-card .role {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* --- FAQ Page --- */
.faq-hero {
  background: linear-gradient(135deg, var(--primary), var(--dark));
  padding: 10rem 0 5rem;
  color: var(--white);
  text-align: center;
}

.faq-hero h1 {
  color: var(--white);
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

/* --- Policy Pages --- */
.policy-hero {
  background: linear-gradient(135deg, var(--primary), var(--dark));
  padding: 10rem 0 5rem;
  color: var(--white);
  text-align: center;
}

.policy-hero h1 {
  color: var(--white);
  font-size: 2.5rem;
  font-weight: 800;
}

.policy-content {
  padding: 4rem 0;
  max-width: 900px;
  margin: 0 auto;
}

.policy-content h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--dark);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.policy-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.policy-content p,
.policy-content li {
  color: var(--text-light);
  line-height: 1.8;
  font-size: 1rem;
}

.policy-content ul {
  padding-left: 1.5rem;
}

.policy-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.9rem;
}

.policy-content table th {
  background: var(--primary);
  color: var(--white);
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 600;
}

.policy-content table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #e0e0e0;
  vertical-align: top;
}

.policy-content table tr:nth-child(even) td {
  background: var(--light-bg);
}

/* --- Cookie Consent Popup --- */
.cookie-consent-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  padding: 1.5rem 2rem;
  display: none;
}

.cookie-consent-popup.show {
  display: block;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
}

.cookie-text {
  flex: 1;
  min-width: 280px;
}

.cookie-text p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

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

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

.cookie-buttons .btn {
  padding: 0.6rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 25px;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

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

.cookie-btn-accept:hover {
  background: var(--dark);
}

.cookie-btn-reject {
  background: #e0e0e0;
  color: var(--text);
}

.cookie-btn-reject:hover {
  background: #ccc;
}

/* --- Page Hero (Generic subpage) --- */
.page-hero {
  background: linear-gradient(135deg, var(--primary), var(--dark));
  padding: 10rem 0 5rem;
  color: var(--white);
  text-align: center;
}

.page-hero h1 {
  color: var(--white);
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.15rem;
  max-width: 650px;
  margin: 0 auto;
}

/* --- Key Figures / Stats --- */
.stats-section {
  background: var(--primary);
  padding: 4rem 0;
}

.stat-card {
  text-align: center;
  color: var(--white);
  padding: 1.5rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --- Image with Text Sections --- */
.img-text-section {
  padding: 5rem 0;
}

.img-text-section img {
  border-radius: 16px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
  width: 100%;
}

.img-text-section h2 {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 1.25rem;
}

.img-text-section p {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.8;
}

.img-text-section ul {
  list-style: none;
  padding: 0;
}

.img-text-section ul li {
  padding: 0.4rem 0;
  color: var(--text-light);
  font-size: 1rem;
}

.img-text-section ul li i {
  color: var(--accent);
  margin-right: 0.5rem;
}

/* --- Breadcrumb --- */
.breadcrumb-nav {
  background: var(--light-bg);
  padding: 0.75rem 0;
}

.breadcrumb-nav ol {
  list-style: none;
  display: flex;
  gap: 0.5rem;
  padding: 0;
  margin: 0;
}

.breadcrumb-nav a {
  color: var(--primary);
  text-decoration: none;
  font-size: 0.9rem;
}

.breadcrumb-nav .active {
  color: var(--text-light);
}

/* --- Responsive --- */
@media (max-width: 991px) {
  .navbar-buttons {
    margin-left: 0;
    margin-top: 0.5rem;
  }

  .hero-content h2 {
    font-size: 2.25rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  section {
    padding: 3.5rem 0;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    justify-content: center;
  }

  .media-container-row {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .footer3 .policy-links {
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .hero-content h2 {
    font-size: 1.75rem;
  }

  .display-1 {
    font-size: 2.25rem;
  }

  .display-2 {
    font-size: 1.75rem;
  }

  .section-header h2 {
    font-size: 1.6rem;
  }

  .parallax-content h2 {
    font-size: 1.75rem;
  }
}
