/* ==========================================================================
   SHINY BAY - ELEGANT CLASSIC STYLE
   Complete CSS Stylesheet
   Design Style: Timeless elegant design with refined elements
   ========================================================================== */

/* ==========================================================================
   CSS RESET & BASE STYLES
   ========================================================================== */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  line-height: 1.7;
  color: #2c3e50;
  background-color: #fafaf8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ==========================================================================
   TYPOGRAPHY - ELEGANT CLASSIC
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-weight: 700;
  line-height: 1.3;
  color: #1a1a1a;
  margin-bottom: 20px;
}

h1 {
  font-size: 48px;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 38px;
  letter-spacing: -0.3px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 22px;
}

p {
  margin-bottom: 16px;
  color: #4a4a4a;
}

/* ==========================================================================
   LAYOUT CONTAINERS
   ========================================================================== */

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

section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */

header {
  background-color: #ffffff;
  border-bottom: 1px solid #e8e5e0;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

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

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
  justify-content: center;
}

.nav-menu a {
  font-family: 'Georgia', serif;
  font-size: 16px;
  color: #2c3e50;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: color 0.3s ease;
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #2B7A78;
  transition: width 0.3s ease;
}

.nav-menu a:hover {
  color: #2B7A78;
}

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

/* ==========================================================================
   BUTTONS - ELEGANT CLASSIC STYLE
   ========================================================================== */

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Georgia', serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 4px;
  transition: all 0.3s ease;
  text-align: center;
  border: 2px solid transparent;
}

.btn-primary {
  background-color: #2B7A78;
  color: #ffffff;
  border-color: #2B7A78;
}

.btn-primary:hover {
  background-color: #236663;
  border-color: #236663;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(43, 122, 120, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: #2B7A78;
  border-color: #2B7A78;
}

.btn-secondary:hover {
  background-color: #2B7A78;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(43, 122, 120, 0.2);
}

/* ==========================================================================
   MOBILE MENU
   ========================================================================== */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  width: 50px;
  height: 50px;
  background-color: #2B7A78;
  color: #ffffff;
  font-size: 24px;
  border-radius: 4px;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(43, 122, 120, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: #236663;
  transform: scale(1.05);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background-color: #ffffff;
  z-index: 1999;
  padding: 80px 30px 30px;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
  transition: right 0.4s ease;
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  font-size: 28px;
  color: #2c3e50;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}

.mobile-menu-close:hover {
  color: #2B7A78;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav a {
  font-family: 'Georgia', serif;
  font-size: 18px;
  color: #2c3e50;
  padding: 12px 0;
  border-bottom: 1px solid #e8e5e0;
  transition: color 0.3s ease;
}

.mobile-nav a:hover {
  color: #2B7A78;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero {
  background: linear-gradient(135deg, #f8f6f3 0%, #fafaf8 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
  border-bottom: 1px solid #e8e5e0;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  font-size: 52px;
  color: #1a1a1a;
  margin-bottom: 24px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 20px;
  color: #5a5a5a;
  margin-bottom: 32px;
  line-height: 1.6;
}

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

.trust-badge {
  font-size: 14px;
  color: #7a7a7a;
  font-style: italic;
  margin-top: 20px;
}

/* ==========================================================================
   HERO INTERNAL PAGES
   ========================================================================== */

.hero-internal {
  background: linear-gradient(135deg, #f8f6f3 0%, #fafaf8 100%);
  padding: 60px 20px;
  margin-bottom: 60px;
  border-bottom: 1px solid #e8e5e0;
}

.breadcrumbs {
  font-size: 14px;
  color: #7a7a7a;
  margin-bottom: 16px;
}

.breadcrumbs a {
  color: #2B7A78;
  transition: color 0.3s ease;
}

.breadcrumbs a:hover {
  color: #236663;
}

/* ==========================================================================
   SECTION TITLES
   ========================================================================== */

.section-subtitle {
  font-size: 18px;
  color: #7a7a7a;
  text-align: center;
  margin-bottom: 40px;
  font-style: italic;
}

/* ==========================================================================
   BENEFITS SECTION
   ========================================================================== */

.benefits {
  background-color: #ffffff;
  padding: 60px 20px;
}

.benefits h2 {
  text-align: center;
  margin-bottom: 16px;
}

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
  justify-content: center;
}

.benefit-card {
  flex: 1 1 calc(50% - 30px);
  min-width: 280px;
  max-width: 500px;
  background-color: #fafaf8;
  padding: 32px;
  border: 1px solid #e8e5e0;
  border-radius: 4px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: #2B7A78;
}

.benefit-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
}

.benefit-card h3 {
  font-size: 24px;
  margin-bottom: 12px;
  color: #1a1a1a;
}

.benefit-card p {
  color: #5a5a5a;
  line-height: 1.7;
}

/* ==========================================================================
   STEPS / HOW IT WORKS
   ========================================================================== */

.how-it-works {
  padding: 60px 20px;
  background-color: #fafaf8;
}

.how-it-works h2 {
  text-align: center;
}

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin: 40px 0;
  justify-content: center;
}

.step-card {
  flex: 1 1 calc(33.333% - 30px);
  min-width: 280px;
  max-width: 380px;
  background-color: #ffffff;
  padding: 36px;
  border: 1px solid #e8e5e0;
  border-radius: 4px;
  position: relative;
  transition: all 0.3s ease;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.step-number {
  font-size: 48px;
  font-weight: 700;
  color: #2B7A78;
  opacity: 0.15;
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: 'Georgia', serif;
}

.step-card h3 {
  font-size: 24px;
  margin-bottom: 12px;
  padding-right: 60px;
}

.step-card p {
  color: #5a5a5a;
}

.how-it-works .btn-primary {
  display: block;
  margin: 40px auto 0;
  width: fit-content;
}

/* ==========================================================================
   SERVICES SECTIONS
   ========================================================================== */

.services-preview,
.services-detailed {
  padding: 60px 20px;
}

.services-preview h2,
.services-detailed h2 {
  text-align: center;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
  justify-content: center;
}

.service-card {
  flex: 1 1 calc(33.333% - 30px);
  min-width: 280px;
  max-width: 360px;
  background-color: #ffffff;
  padding: 36px;
  border: 2px solid #e8e5e0;
  border-radius: 4px;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: #2B7A78;
  box-shadow: 0 8px 24px rgba(43, 122, 120, 0.12);
}

.service-card h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: #1a1a1a;
}

.service-card .price {
  font-size: 32px;
  font-weight: 700;
  color: #2B7A78;
  margin-bottom: 16px;
  font-family: 'Georgia', serif;
}

.service-card p {
  color: #5a5a5a;
  margin-bottom: 0;
}

.services-preview .btn-secondary {
  display: block;
  margin: 40px auto 0;
  width: fit-content;
}

/* Service Detailed */
.service-detailed {
  background-color: #ffffff;
  padding: 40px;
  border: 1px solid #e8e5e0;
  border-radius: 4px;
  margin-bottom: 30px;
}

.service-detailed h2 {
  text-align: left;
  margin-bottom: 12px;
}

.service-price {
  font-size: 36px;
  font-weight: 700;
  color: #2B7A78;
  margin-bottom: 8px;
  font-family: 'Georgia', serif;
}

.service-duration {
  font-size: 14px;
  color: #7a7a7a;
  margin-bottom: 20px;
  font-style: italic;
}

.service-includes {
  list-style: none;
  margin: 24px 0;
  padding-left: 0;
}

.service-includes li {
  padding: 8px 0 8px 32px;
  position: relative;
  color: #5a5a5a;
}

.service-includes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2B7A78;
  font-weight: 700;
  font-size: 18px;
}

/* ==========================================================================
   TRUST SIGNALS
   ========================================================================== */

.trust-signals {
  padding: 60px 20px;
  background-color: #fafaf8;
}

.trust-signals h2 {
  text-align: center;
}

.trust-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
  justify-content: center;
}

.trust-card {
  flex: 1 1 calc(50% - 30px);
  min-width: 280px;
  max-width: 500px;
  background-color: #ffffff;
  padding: 32px;
  border: 1px solid #e8e5e0;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: all 0.3s ease;
}

.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.trust-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
}

.trust-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.trust-card p {
  color: #5a5a5a;
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */

.testimonials {
  padding: 60px 20px;
  background-color: #ffffff;
}

.testimonials h2 {
  text-align: center;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
  justify-content: center;
}

.testimonial-card {
  flex: 1 1 calc(50% - 30px);
  min-width: 300px;
  max-width: 550px;
  background-color: #fafaf8;
  padding: 36px;
  border-left: 4px solid #2B7A78;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

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

.testimonial-text {
  font-size: 18px;
  font-style: italic;
  color: #2c3e50;
  margin-bottom: 20px;
  line-height: 1.6;
}

.testimonial-author {
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.testimonial-context {
  font-size: 14px;
  color: #7a7a7a;
}

.rating-summary {
  text-align: center;
  margin-top: 32px;
  font-size: 16px;
  color: #2B7A78;
  font-weight: 600;
}

/* ==========================================================================
   CTA SECTIONS
   ========================================================================== */

.cta-final,
.cta-section {
  background: linear-gradient(135deg, #2B7A78 0%, #236663 100%);
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 0;
}

.cta-final h2,
.cta-section h2 {
  color: #ffffff;
  margin-bottom: 16px;
}

.cta-final p,
.cta-section p {
  color: #f0f0f0;
  font-size: 18px;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.cta-final .btn-primary,
.cta-section .btn-primary {
  background-color: #ffffff;
  color: #2B7A78;
  border-color: #ffffff;
}

.cta-final .btn-primary:hover,
.cta-section .btn-primary:hover {
  background-color: #f0f0f0;
  border-color: #f0f0f0;
}

.cta-final .btn-secondary,
.cta-section .btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.cta-final .btn-secondary:hover,
.cta-section .btn-secondary:hover {
  background-color: #ffffff;
  color: #2B7A78;
}

.trust-note,
.guarantee {
  color: #e0e0e0;
  font-size: 14px;
  margin-top: 20px;
}

/* ==========================================================================
   PRICING SECTIONS
   ========================================================================== */

.pricing-table,
.pricing-factors,
.discounts,
.payment-methods {
  padding: 60px 20px;
}

.intro-text,
.intro {
  text-align: center;
  font-size: 18px;
  color: #5a5a5a;
  max-width: 800px;
  margin: 0 auto 40px;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.pricing-card {
  flex: 1 1 calc(33.333% - 30px);
  min-width: 280px;
  max-width: 340px;
  background-color: #ffffff;
  padding: 36px;
  border: 2px solid #e8e5e0;
  border-radius: 4px;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pricing-card:hover {
  transform: translateY(-4px);
  border-color: #2B7A78;
  box-shadow: 0 8px 24px rgba(43, 122, 120, 0.12);
}

.pricing-card.highlight {
  border-color: #2B7A78;
  background-color: #f8f6f3;
  position: relative;
}

.pricing-card h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

.pricing-card .price {
  font-size: 40px;
  font-weight: 700;
  color: #2B7A78;
  margin-bottom: 8px;
  font-family: 'Georgia', serif;
}

.pricing-card .unit {
  font-size: 14px;
  color: #7a7a7a;
  margin-bottom: 4px;
}

.pricing-card .time {
  font-size: 14px;
  color: #7a7a7a;
  font-style: italic;
  margin-bottom: 24px;
}

.pricing-card .features {
  list-style: none;
  margin: 20px 0;
  width: 100%;
  text-align: left;
}

.pricing-card .features li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: #5a5a5a;
  font-size: 15px;
}

.pricing-card .features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2B7A78;
  font-weight: 700;
}

.highlight-note {
  background-color: #2B7A78;
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  margin-top: 16px;
}

/* Factors Grid */
.factors-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.factor-card {
  flex: 1 1 calc(50% - 30px);
  min-width: 280px;
  max-width: 500px;
  background-color: #fafaf8;
  padding: 32px;
  border: 1px solid #e8e5e0;
  border-radius: 4px;
}

.factor-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #2B7A78;
}

.reassurance,
.note {
  text-align: center;
  margin-top: 40px;
  padding: 24px;
  background-color: #f8f6f3;
  border-left: 4px solid #2B7A78;
  border-radius: 4px;
  color: #5a5a5a;
}

/* Discounts */
.discounts-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.discount-card {
  flex: 1 1 calc(33.333% - 30px);
  min-width: 280px;
  max-width: 360px;
  background-color: #ffffff;
  padding: 32px;
  border: 2px solid #2B7A78;
  border-radius: 4px;
  text-align: center;
}

.discount-card h3 {
  color: #2B7A78;
  margin-bottom: 12px;
}

/* Payment Methods */
.payment-list {
  list-style: none;
  max-width: 700px;
  margin: 0 auto;
}

.payment-list li {
  padding: 16px 0 16px 40px;
  position: relative;
  border-bottom: 1px solid #e8e5e0;
  color: #5a5a5a;
}

.payment-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #2B7A78;
  font-size: 20px;
  font-weight: 700;
}

.payment-note {
  text-align: center;
  margin-top: 32px;
  color: #7a7a7a;
  font-size: 15px;
}

/* ==========================================================================
   COMPARISON TABLE
   ========================================================================== */

.comparison {
  padding: 60px 20px;
  background-color: #fafaf8;
}

.comparison h2 {
  text-align: center;
}

.comparison-table {
  max-width: 900px;
  margin: 40px auto;
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  background-color: #ffffff;
  border: 1px solid #e8e5e0;
}

thead {
  background-color: #2B7A78;
  color: #ffffff;
}

thead th {
  padding: 16px;
  text-align: left;
  font-family: 'Georgia', serif;
  font-weight: 600;
}

tbody tr {
  border-bottom: 1px solid #e8e5e0;
}

tbody tr:hover {
  background-color: #fafaf8;
}

td {
  padding: 16px;
  color: #5a5a5a;
}

td:first-child {
  font-weight: 600;
  color: #2c3e50;
}

.conclusion {
  text-align: center;
  margin-top: 40px;
  font-size: 16px;
  color: #5a5a5a;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================================================
   PILLARS & PRINCIPLES
   ========================================================================== */

.trust-pillars,
.how-we-work,
.guarantees {
  padding: 60px 20px;
}

.pillars-grid,
.principles-grid,
.guarantees-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.pillar-card,
.principle-card,
.guarantee-card {
  flex: 1 1 calc(50% - 30px);
  min-width: 280px;
  max-width: 500px;
  background-color: #ffffff;
  padding: 36px;
  border: 1px solid #e8e5e0;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.pillar-card:hover,
.principle-card:hover,
.guarantee-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: #2B7A78;
}

.pillar-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
}

.proof-list {
  list-style: none;
  margin-top: 16px;
}

.proof-list li {
  padding: 6px 0 6px 24px;
  position: relative;
  color: #5a5a5a;
  font-size: 15px;
}

.proof-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #2B7A78;
  font-size: 20px;
}

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */

.contact-methods {
  padding: 60px 20px;
}

.methods-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.method-card {
  flex: 1 1 calc(50% - 30px);
  min-width: 300px;
  max-width: 500px;
  background-color: #ffffff;
  padding: 40px;
  border: 2px solid #e8e5e0;
  border-radius: 4px;
  text-align: center;
  transition: all 0.3s ease;
}

.method-card:hover {
  transform: translateY(-4px);
  border-color: #2B7A78;
  box-shadow: 0 8px 24px rgba(43, 122, 120, 0.12);
}

.method-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
}

.method-card h3 {
  font-size: 26px;
  margin-bottom: 16px;
}

.method-value {
  font-size: 24px;
  font-weight: 700;
  color: #2B7A78;
  margin-bottom: 16px;
}

.method-value a {
  color: #2B7A78;
}

.method-value a:hover {
  color: #236663;
}

/* Contact Form */
.contact-form-section {
  padding: 60px 20px;
  background-color: #fafaf8;
}

.form-subheadline {
  text-align: center;
  color: #7a7a7a;
  margin-bottom: 32px;
}

.form-note {
  background-color: #fff3cd;
  border: 1px solid #ffc107;
  padding: 20px;
  border-radius: 4px;
  margin-bottom: 32px;
  color: #856404;
  text-align: center;
}

.contact-info-box {
  background-color: #ffffff;
  padding: 32px;
  border: 2px solid #2B7A78;
  border-radius: 4px;
  max-width: 600px;
  margin: 0 auto;
}

.contact-info-box h3 {
  color: #2B7A78;
  margin-bottom: 20px;
}

.contact-info-box p {
  margin-bottom: 12px;
  color: #5a5a5a;
}

.contact-info-box a {
  color: #2B7A78;
  font-weight: 600;
}

.contact-info-box a:hover {
  color: #236663;
}

.privacy-note {
  text-align: center;
  margin-top: 32px;
  color: #7a7a7a;
  font-size: 14px;
}

.privacy-note a {
  color: #2B7A78;
  text-decoration: underline;
}

/* Office Info */
.office-info {
  padding: 60px 20px;
}

.office-details {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.office-detail {
  flex: 1 1 calc(33.333% - 30px);
  min-width: 280px;
  max-width: 360px;
  background-color: #fafaf8;
  padding: 32px;
  border: 1px solid #e8e5e0;
  border-radius: 4px;
}

.office-detail h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #2B7A78;
}

.office-value {
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 12px;
}

.office-note {
  font-size: 14px;
  color: #7a7a7a;
  font-style: italic;
}

/* FAQ Contact */
.faq-contact {
  padding: 60px 20px;
  background-color: #fafaf8;
}

.faq-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.faq-item {
  flex: 1 1 calc(50% - 30px);
  min-width: 280px;
  max-width: 500px;
  background-color: #ffffff;
  padding: 28px;
  border-left: 4px solid #2B7A78;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #1a1a1a;
}

.faq-item p {
  color: #5a5a5a;
  margin-bottom: 0;
}

/* ==========================================================================
   LEGAL PAGES
   ========================================================================== */

.legal-content {
  padding: 60px 20px;
  background-color: #ffffff;
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background-color: #fafaf8;
  padding: 48px;
  border: 1px solid #e8e5e0;
  border-radius: 4px;
}

.content-wrapper h2 {
  font-size: 28px;
  margin-top: 32px;
  margin-bottom: 16px;
  color: #2B7A78;
}

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

.content-wrapper p {
  color: #5a5a5a;
  line-height: 1.8;
  margin-bottom: 16px;
}

.content-wrapper ul {
  list-style: none;
  margin: 20px 0;
}

.content-wrapper ul li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: #5a5a5a;
}

.content-wrapper ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #2B7A78;
  font-weight: 700;
}

.rodo-list {
  list-style: none;
  margin: 24px 0;
}

.rodo-list li {
  padding: 12px 0;
  border-bottom: 1px solid #e8e5e0;
  color: #5a5a5a;
}

.rodo-list li strong {
  color: #2c3e50;
  display: inline-block;
  min-width: 180px;
}

/* ==========================================================================
   THANK YOU PAGE
   ========================================================================== */

.thank-you {
  padding: 80px 20px;
  background-color: #fafaf8;
  text-align: center;
}

.thank-you-content {
  max-width: 700px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 60px 40px;
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.thank-you-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
}

.thank-you h1 {
  color: #2B7A78;
  margin-bottom: 16px;
}

.thank-you-subtitle {
  font-size: 18px;
  color: #5a5a5a;
  margin-bottom: 32px;
}

.next-steps {
  text-align: left;
  margin: 40px 0;
  padding: 28px;
  background-color: #fafaf8;
  border-radius: 4px;
}

.next-steps h2 {
  font-size: 24px;
  margin-bottom: 16px;
  color: #2B7A78;
}

.steps-list {
  counter-reset: step-counter;
  list-style: none;
}

.steps-list li {
  counter-increment: step-counter;
  padding: 12px 0 12px 40px;
  position: relative;
  color: #5a5a5a;
}

.steps-list li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  width: 28px;
  height: 28px;
  background-color: #2B7A78;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

.thank-you-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 32px 0;
}

.contact-info {
  font-size: 16px;
  color: #5a5a5a;
  margin-top: 24px;
}

.contact-info a {
  color: #2B7A78;
  font-weight: 600;
}

/* ==========================================================================
   CUSTOM SERVICE SECTION
   ========================================================================== */

.custom-service {
  padding: 60px 20px;
  background-color: #f8f6f3;
  text-align: center;
}

.custom-service h2 {
  margin-bottom: 20px;
}

.custom-service p {
  max-width: 700px;
  margin: 0 auto 24px;
}

.custom-service ul {
  list-style: none;
  max-width: 600px;
  margin: 24px auto;
  text-align: left;
}

.custom-service ul li {
  padding: 10px 0 10px 32px;
  position: relative;
  color: #5a5a5a;
}

.custom-service ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2B7A78;
  font-weight: 700;
  font-size: 18px;
}

.custom-service .btn-primary {
  margin: 24px 0 16px;
}

.custom-service p:last-child {
  font-size: 18px;
  margin-top: 16px;
}

.custom-service a[href^="tel"] {
  color: #2B7A78;
  font-weight: 600;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

footer {
  background-color: #17252A;
  color: #e0e0e0;
  padding: 60px 20px 20px;
  margin-top: 0;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-brand,
.footer-contact,
.footer-links,
.footer-legal {
  flex: 1 1 200px;
}

.footer-logo {
  height: 45px;
  margin-bottom: 16px;
}

.tagline {
  font-size: 14px;
  color: #b0b0b0;
  font-style: italic;
  line-height: 1.5;
}

footer h4 {
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 16px;
  font-family: 'Georgia', serif;
}

footer p {
  font-size: 14px;
  color: #b0b0b0;
  margin-bottom: 8px;
}

footer a {
  color: #b0b0b0;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #2B7A78;
}

footer ul {
  list-style: none;
}

footer ul li {
  margin-bottom: 8px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #2c3e50;
}

.footer-bottom p {
  font-size: 14px;
  color: #7a7a7a;
}

/* ==========================================================================
   COOKIE CONSENT BANNER
   ========================================================================== */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #17252A;
  color: #e0e0e0;
  padding: 24px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  z-index: 1998;
  display: none;
  border-top: 2px solid #2B7A78;
}

.cookie-banner.active {
  display: block;
  animation: slideUp 0.4s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

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

.cookie-text {
  flex: 1 1 400px;
  font-size: 14px;
  line-height: 1.6;
}

.cookie-text p {
  color: white;
}

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

.cookie-btn {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.3s ease;
  font-family: 'Georgia', serif;
}

.cookie-accept {
  background-color: #2B7A78;
  color: #ffffff;
}

.cookie-accept:hover {
  background-color: #236663;
}

.cookie-reject {
  background-color: transparent;
  color: #e0e0e0;
  border: 1px solid #e0e0e0;
}

.cookie-reject:hover {
  background-color: #2c3e50;
}

.cookie-settings {
  background-color: transparent;
  color: #2B7A78;
  border: 1px solid #2B7A78;
}

.cookie-settings:hover {
  background-color: #2B7A78;
  color: #ffffff;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-modal.active {
  display: flex;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.cookie-modal-content {
  background-color: #ffffff;
  max-width: 600px;
  width: 100%;
  padding: 40px;
  border-radius: 4px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  max-height: 80vh;
  overflow-y: auto;
  animation: slideIn 0.3s ease;
}

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

.cookie-modal h3 {
  color: #2B7A78;
  margin-bottom: 20px;
}

.cookie-category {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e8e5e0;
}

.cookie-category:last-of-type {
  border-bottom: none;
}

.cookie-category h4 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #2c3e50;
}

.cookie-category p {
  font-size: 14px;
  color: #7a7a7a;
  margin-bottom: 12px;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
}

.toggle-switch {
  position: relative;
  width: 50px;
  height: 24px;
  background-color: #ccc;
  border-radius: 12px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.toggle-switch.active {
  background-color: #2B7A78;
}

.toggle-switch::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  background-color: #ffffff;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.toggle-switch.active::after {
  transform: translateX(26px);
}

.toggle-switch.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.cookie-modal-buttons .btn-primary,
.cookie-modal-buttons .btn-secondary {
  flex: 1 1 150px;
}

/* ==========================================================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ========================================================================== */

@media (max-width: 768px) {
  /* Typography */
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 22px;
  }
  
  /* Navigation */
  .nav-menu {
    display: none;
  }
  
  .main-nav .btn-primary {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .mobile-menu {
    display: block;
  }
  
  /* Hero */
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .hero-cta .btn-primary,
  .hero-cta .btn-secondary {
    width: 100%;
  }
  
  /* Cards - Mobile Stack */
  .benefit-card,
  .step-card,
  .service-card,
  .trust-card,
  .testimonial-card,
  .pillar-card,
  .principle-card,
  .guarantee-card,
  .factor-card,
  .discount-card,
  .pricing-card,
  .method-card,
  .office-detail,
  .faq-item {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  /* Grids */
  .benefits-grid,
  .steps-grid,
  .services-grid,
  .trust-grid,
  .testimonials-grid,
  .pillars-grid,
  .principles-grid,
  .guarantees-grid,
  .factors-grid,
  .discounts-grid,
  .pricing-grid,
  .methods-grid,
  .office-details,
  .faq-grid {
    gap: 20px;
  }
  
  /* CTA Sections */
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cta-buttons .btn-primary,
  .cta-buttons .btn-secondary {
    width: 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-brand,
  .footer-contact,
  .footer-links,
  .footer-legal {
    flex: 1 1 100%;
  }
  
  /* Cookie Banner */
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  /* Tables */
  table {
    font-size: 14px;
  }
  
  thead th,
  td {
    padding: 12px 8px;
  }
  
  /* Legal Content */
  .content-wrapper {
    padding: 32px 20px;
  }
  
  /* Thank You */
  .thank-you-content {
    padding: 40px 24px;
  }
  
  .thank-you-cta {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet adjustments */
  .benefit-card,
  .trust-card,
  .testimonial-card,
  .pillar-card,
  .factor-card,
  .method-card {
    flex: 1 1 calc(50% - 30px);
  }
  
  .step-card,
  .service-card,
  .pricing-card,
  .discount-card {
    flex: 1 1 calc(50% - 30px);
    max-width: calc(50% - 30px);
  }
}

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */

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

.mb-20 {
  margin-bottom: 20px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-40 {
  margin-top: 40px;
}

/* Availability */
.availability {
  font-size: 14px;
  color: #7a7a7a;
  margin-top: 16px;
  font-style: italic;
}

/* ==========================================================================
   PRINT STYLES
   ========================================================================== */

@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  header,
  footer {
    display: none;
  }
  
  body {
    background-color: #ffffff;
  }
  
  a {
    text-decoration: underline;
  }
}