:root {
  --color-primary: #1a2e4c;
  --color-secondary: #c9a227;
  --color-accent: #3b5998;
  --color-dark: #0d1821;
  --color-light: #f8f9fa;
  --color-text: #2c3e50;
  --color-muted: #6c757d;
  --color-white: #ffffff;
  --color-border: #dee2e6;
  --font-heading: 'Georgia', serif;
  --font-body: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --shadow-soft: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-medium: 0 8px 30px rgba(0,0,0,0.12);
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  line-height: 1.7;
  background: var(--color-white);
}

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

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

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.container-narrow {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.nav-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-soft);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: -0.5px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 35px;
}

.nav-menu a {
  color: var(--color-text);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  padding: 5px 0;
}

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

.nav-menu a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--color-primary);
  color: var(--color-white) !important;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 600;
}

.nav-cta:hover {
  background: var(--color-secondary);
  color: var(--color-dark) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
}

.nav-toggle span {
  width: 25px;
  height: 2px;
  background: var(--color-primary);
  transition: var(--transition);
}

/* Hero Section - Editorial Style */
.hero-editorial {
  padding: 180px 20px 100px;
  background: linear-gradient(135deg, var(--color-light) 0%, #e8eef5 100%);
  position: relative;
  overflow: hidden;
}

.hero-editorial::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(201,162,39,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-tag {
  display: inline-block;
  background: var(--color-secondary);
  color: var(--color-dark);
  padding: 8px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 30px;
  border-radius: 4px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  line-height: 1.2;
  color: var(--color-primary);
  margin-bottom: 25px;
  font-weight: 700;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: var(--color-muted);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.hero-cta-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-decoration: none;
}

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

.btn-primary:hover {
  background: var(--color-dark);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

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

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

.btn-accent {
  background: var(--color-secondary);
  color: var(--color-dark);
}

.btn-accent:hover {
  background: #b8911f;
  transform: translateY(-2px);
}

/* Editorial Content Sections */
.editorial-section {
  padding: 90px 20px;
}

.editorial-section.bg-alt {
  background: var(--color-light);
}

.editorial-section.bg-dark {
  background: var(--color-primary);
  color: var(--color-white);
}

.editorial-section.bg-dark h2,
.editorial-section.bg-dark h3 {
  color: var(--color-white);
}

.editorial-section.bg-dark p {
  color: rgba(255,255,255,0.85);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  color: var(--color-secondary);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  color: var(--color-primary);
  margin-bottom: 20px;
  line-height: 1.3;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--color-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Story Block */
.story-block {
  display: flex;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.story-block.reverse {
  flex-direction: row-reverse;
}

.story-content {
  flex: 1;
}

.story-image {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.story-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.story-content h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--color-primary);
  margin-bottom: 20px;
}

.story-content p {
  margin-bottom: 15px;
  color: var(--color-text);
}

.story-cta {
  margin-top: 25px;
}

/* Services Cards */
.services-flow {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.service-card {
  display: flex;
  gap: 40px;
  padding: 40px;
  background: var(--color-white);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  align-items: flex-start;
}

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

.service-card:nth-child(even) {
  flex-direction: row-reverse;
  background: var(--color-light);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-icon svg {
  width: 40px;
  height: 40px;
  fill: var(--color-white);
}

.service-body {
  flex: 1;
}

.service-body h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.service-body p {
  color: var(--color-muted);
  margin-bottom: 20px;
  line-height: 1.7;
}

.service-price {
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 15px;
}

.service-price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-muted);
}

.service-features {
  list-style: none;
  margin-bottom: 20px;
}

.service-features li {
  padding: 6px 0;
  color: var(--color-text);
  position: relative;
  padding-left: 25px;
}

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-secondary);
  font-weight: 700;
}

/* Quote Block */
.quote-block {
  background: var(--color-primary);
  padding: 80px 40px;
  border-radius: 20px;
  text-align: center;
  margin: 60px 0;
  position: relative;
}

.quote-block::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 40px;
  font-size: 8rem;
  font-family: var(--font-heading);
  color: rgba(255,255,255,0.1);
  line-height: 1;
}

.quote-text {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--color-white);
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 30px;
  position: relative;
  z-index: 2;
}

.quote-author {
  color: var(--color-secondary);
  font-weight: 600;
}

/* Stats Row */
.stats-row {
  display: flex;
  justify-content: center;
  gap: 80px;
  padding: 60px 0;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--color-secondary);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1rem;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Process Steps */
.process-flow {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 700px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  padding: 30px;
  background: var(--color-white);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  position: relative;
}

.process-number {
  width: 50px;
  height: 50px;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.process-content h4 {
  font-size: 1.2rem;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.process-content p {
  color: var(--color-muted);
  font-size: 0.95rem;
}

/* Testimonials */
.testimonials-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.testimonial-card {
  flex: 1;
  min-width: 300px;
  background: var(--color-white);
  padding: 35px;
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 4rem;
  font-family: var(--font-heading);
  color: var(--color-light);
  line-height: 1;
}

.testimonial-text {
  font-size: 1.05rem;
  color: var(--color-text);
  line-height: 1.7;
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-weight: 700;
  font-size: 1.2rem;
}

.author-info h5 {
  font-size: 1rem;
  color: var(--color-primary);
  margin-bottom: 3px;
}

.author-info span {
  font-size: 0.85rem;
  color: var(--color-muted);
}

/* Contact Form */
.contact-wrapper {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.contact-info {
  flex: 1;
}

.contact-info h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-primary);
  margin-bottom: 20px;
}

.contact-info p {
  color: var(--color-muted);
  margin-bottom: 30px;
  line-height: 1.8;
}

.contact-details {
  list-style: none;
}

.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid var(--color-border);
}

.contact-details li:last-child {
  border-bottom: none;
}

.contact-details svg {
  width: 24px;
  height: 24px;
  fill: var(--color-secondary);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-details strong {
  display: block;
  color: var(--color-primary);
  margin-bottom: 3px;
}

.contact-details span {
  color: var(--color-muted);
  font-size: 0.95rem;
}

.contact-form-wrapper {
  flex: 1;
  background: var(--color-white);
  padding: 45px;
  border-radius: 20px;
  box-shadow: var(--shadow-medium);
}

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

.form-group label {
  display: block;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px 18px;
  border: 2px solid var(--color-border);
  border-radius: 10px;
  font-size: 1rem;
  font-family: var(--font-body);
  transition: var(--transition);
  background: var(--color-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(26,46,76,0.1);
}

.form-group textarea {
  min-height: 130px;
  resize: vertical;
}

.form-submit {
  width: 100%;
  padding: 18px;
  font-size: 1.1rem;
}

/* Footer */
.footer {
  background: var(--color-dark);
  color: rgba(255,255,255,0.7);
  padding: 80px 20px 30px;
}

.footer-grid {
  display: flex;
  gap: 60px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.footer-brand {
  flex: 2;
  min-width: 280px;
}

.footer-brand h4 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--color-white);
  margin-bottom: 20px;
}

.footer-brand p {
  line-height: 1.8;
  margin-bottom: 25px;
}

.footer-links {
  flex: 1;
  min-width: 180px;
}

.footer-links h5 {
  color: var(--color-white);
  font-size: 1.1rem;
  margin-bottom: 20px;
}

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

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

.footer-links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
}

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

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

.footer-bottom p {
  font-size: 0.9rem;
}

.footer-legal {
  display: flex;
  gap: 25px;
}

.footer-legal a {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
}

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

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-dark);
  color: var(--color-white);
  padding: 25px 40px;
  z-index: 9999;
  display: none;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

.cookie-banner.show {
  display: block;
}

.cookie-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.6;
}

.cookie-text a {
  color: var(--color-secondary);
}

.cookie-buttons {
  display: flex;
  gap: 15px;
}

.cookie-btn {
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-size: 0.95rem;
  transition: var(--transition);
}

.cookie-accept {
  background: var(--color-secondary);
  color: var(--color-dark);
}

.cookie-accept:hover {
  background: #b8911f;
}

.cookie-reject {
  background: transparent;
  color: var(--color-white);
  border: 1px solid rgba(255,255,255,0.3);
}

.cookie-reject:hover {
  border-color: var(--color-white);
}

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  display: none;
}

.sticky-cta.show {
  display: block;
}

.sticky-cta a {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--color-secondary);
  color: var(--color-dark);
  padding: 16px 28px;
  border-radius: 50px;
  font-weight: 700;
  box-shadow: var(--shadow-medium);
  transition: var(--transition);
}

.sticky-cta a:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 40px rgba(201,162,39,0.4);
}

/* Thanks Page */
.thanks-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background: linear-gradient(135deg, var(--color-light) 0%, #e8eef5 100%);
}

.thanks-card {
  background: var(--color-white);
  padding: 60px 50px;
  border-radius: 24px;
  box-shadow: var(--shadow-medium);
  text-align: center;
  max-width: 550px;
}

.thanks-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, var(--color-secondary), #e8c547);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
}

.thanks-icon svg {
  width: 45px;
  height: 45px;
  fill: var(--color-white);
}

.thanks-card h1 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--color-primary);
  margin-bottom: 20px;
}

.thanks-card p {
  color: var(--color-muted);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 15px;
}

.thanks-service {
  background: var(--color-light);
  padding: 20px;
  border-radius: 12px;
  margin: 30px 0;
}

.thanks-service strong {
  color: var(--color-primary);
  display: block;
  margin-bottom: 5px;
}

.thanks-service span {
  color: var(--color-secondary);
  font-size: 1.3rem;
  font-weight: 700;
}

/* Page Headers */
.page-header {
  padding: 160px 20px 80px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-dark) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.page-header h1 {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--color-white);
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.page-header p {
  color: rgba(255,255,255,0.8);
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 25px;
  position: relative;
  z-index: 2;
}

.breadcrumb a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
}

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

.breadcrumb span {
  color: rgba(255,255,255,0.4);
}

/* Legal Pages */
.legal-content {
  padding: 80px 20px;
}

.legal-content h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--color-primary);
  margin: 40px 0 20px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  margin-bottom: 15px;
  line-height: 1.8;
}

.legal-content ul {
  margin: 15px 0 25px 25px;
}

.legal-content li {
  margin-bottom: 10px;
  line-height: 1.7;
}

/* About Page */
.about-intro {
  display: flex;
  gap: 60px;
  align-items: center;
}

.about-intro-content {
  flex: 1;
}

.about-intro-image {
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

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

.values-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.value-card {
  flex: 1;
  min-width: 250px;
  padding: 35px;
  background: var(--color-white);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.value-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--color-secondary), #e8c547);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.value-icon svg {
  width: 35px;
  height: 35px;
  fill: var(--color-white);
}

.value-card h4 {
  font-size: 1.2rem;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.value-card p {
  color: var(--color-muted);
  font-size: 0.95rem;
}

/* Team Section */
.team-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.team-card {
  flex: 0 1 280px;
  background: var(--color-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

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

.team-image {
  height: 280px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-image span {
  font-size: 4rem;
  color: var(--color-white);
  font-weight: 700;
  font-family: var(--font-heading);
}

.team-info {
  padding: 25px;
  text-align: center;
}

.team-info h4 {
  font-size: 1.2rem;
  color: var(--color-primary);
  margin-bottom: 5px;
}

.team-info span {
  color: var(--color-secondary);
  font-size: 0.9rem;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .story-block,
  .story-block.reverse {
    flex-direction: column;
  }

  .story-image img {
    height: 280px;
  }

  .contact-wrapper {
    flex-direction: column;
  }

  .about-intro {
    flex-direction: column;
  }

  .stats-row {
    gap: 40px;
  }

  .footer-grid {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--color-white);
    flex-direction: column;
    padding: 30px;
    gap: 20px;
    box-shadow: var(--shadow-medium);
    display: none;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-inner {
    padding: 15px 20px;
  }

  .hero-editorial {
    padding: 140px 20px 70px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .service-card,
  .service-card:nth-child(even) {
    flex-direction: column;
  }

  .quote-text {
    font-size: 1.4rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .page-header h1 {
    font-size: 2.2rem;
  }

  .contact-form-wrapper {
    padding: 30px 25px;
  }
}

@media (max-width: 480px) {
  .hero-cta-group {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .testimonials-grid {
    flex-direction: column;
  }

  .testimonial-card {
    min-width: 100%;
  }

  .values-grid {
    flex-direction: column;
  }

  .value-card {
    min-width: 100%;
  }
}
