/* ============================================
   СОЛАР ФЮЗ НОТАРИАЛНИ УСЛУГИ - STYLE.CSS
   Professional Corporate Design Style
   ============================================ */

/* CSS RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #2C3E50;
  background-color: #F8F9FA;
  overflow-x: hidden;
}

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

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

ul {
  list-style-position: inside;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.3;
  color: #0F3A5F;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
}

h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

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

h4 {
  font-size: 18px;
  margin-bottom: 12px;
}

p {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.7;
}

strong {
  font-weight: 600;
  color: #0F3A5F;
}

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

/* HEADER */
header {
  background-color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 16px 0;
}

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

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

/* MAIN NAVIGATION */
.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

.main-nav a {
  color: #2C3E50;
  font-weight: 500;
  font-size: 16px;
  padding: 8px 0;
  position: relative;
}

.main-nav a:hover {
  color: #0F3A5F;
}

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

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

/* CTA BUTTON IN HEADER */
.cta-button {
  background-color: #0F3A5F;
  color: #FFFFFF;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  border: 2px solid #0F3A5F;
}

.cta-button:hover {
  background-color: #1B4F72;
  border-color: #1B4F72;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(15, 58, 95, 0.2);
}

/* MOBILE MENU TOGGLE */
.mobile-menu-toggle {
  display: none;
  background-color: #0F3A5F;
  color: #FFFFFF;
  border: none;
  font-size: 24px;
  padding: 8px 16px;
  cursor: pointer;
  border-radius: 4px;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1100;
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: #1B4F72;
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: #FFFFFF;
  box-shadow: -4px 0 16px rgba(0, 0, 0, 0.2);
  z-index: 1200;
  padding: 80px 32px 32px;
  transition: right 0.4s ease;
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: transparent;
  border: none;
  font-size: 32px;
  color: #2C3E50;
  cursor: pointer;
  padding: 8px;
  line-height: 1;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  color: #0F3A5F;
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: #2C3E50;
  font-size: 18px;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid #E8E8E8;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #0F3A5F;
  padding-left: 8px;
}

/* BUTTONS */
.btn-primary,
.btn-secondary,
.btn-link,
.btn-small {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background-color: #0F3A5F;
  color: #FFFFFF;
  border-color: #0F3A5F;
}

.btn-primary:hover {
  background-color: #1B4F72;
  border-color: #1B4F72;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(15, 58, 95, 0.25);
}

.btn-secondary {
  background-color: transparent;
  color: #0F3A5F;
  border-color: #0F3A5F;
}

.btn-secondary:hover {
  background-color: #0F3A5F;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(15, 58, 95, 0.25);
}

.btn-link {
  background-color: transparent;
  color: #0F3A5F;
  border: none;
  padding: 8px 0;
  font-weight: 600;
  position: relative;
}

.btn-link::after {
  content: '→';
  margin-left: 8px;
  transition: margin-left 0.3s ease;
}

.btn-link:hover::after {
  margin-left: 16px;
}

.btn-small {
  padding: 10px 20px;
  font-size: 14px;
  background-color: #0F3A5F;
  color: #FFFFFF;
  border-color: #0F3A5F;
}

.btn-small:hover {
  background-color: #1B4F72;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(15, 58, 95, 0.2);
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, #0F3A5F 0%, #1B4F72 100%);
  color: #FFFFFF;
  padding: 80px 20px;
  margin-bottom: 60px;
}

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

.hero h1 {
  color: #FFFFFF;
  font-size: 48px;
  margin-bottom: 16px;
}

.hero .subheadline {
  font-size: 24px;
  color: #D4AF37;
  font-weight: 600;
  margin-bottom: 24px;
  font-family: 'Playfair Display', Georgia, serif;
}

.hero p {
  font-size: 18px;
  margin-bottom: 32px;
  opacity: 0.95;
}

.cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.trust-badges {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-badges span {
  font-size: 14px;
  font-weight: 600;
  opacity: 0.9;
}

/* PAGE HERO */
.page-hero {
  background-color: #F0F4F8;
  padding: 60px 20px 40px;
  margin-bottom: 60px;
  border-bottom: 4px solid #D4AF37;
}

.page-hero h1 {
  font-size: 40px;
  margin-bottom: 16px;
}

.page-hero .subheadline {
  font-size: 20px;
  color: #D4AF37;
  font-weight: 600;
  margin-bottom: 16px;
  font-family: 'Playfair Display', Georgia, serif;
}

/* BREADCRUMBS */
.breadcrumbs {
  font-size: 14px;
  color: #7D6E4F;
  margin-bottom: 24px;
}

.breadcrumbs a {
  color: #0F3A5F;
  text-decoration: underline;
}

.breadcrumbs a:hover {
  color: #1B4F72;
}

/* SECTIONS */
.services-preview,
.why-choose,
.how-it-works,
.trust-indicators,
.cta-final,
.services-full,
.guarantees,
.cta-section,
.pricing-info,
.pricing-table,
.popular-pricing,
.additional-costs,
.about-story,
.expertise,
.trust-factors,
.approach,
.office,
.testimonials,
.contact-methods,
.contact-form-section,
.office-location,
.office-hours,
.faq-contact,
.legal-content,
.thank-you-hero,
.next-steps,
.quick-links,
.urgent-contact {
  padding: 60px 20px;
  margin-bottom: 40px;
}

.services-preview,
.guarantees,
.pricing-info,
.about-story,
.approach,
.office {
  background-color: #FFFFFF;
}

.why-choose,
.trust-indicators,
.expertise,
.trust-factors {
  background-color: #F0F4F8;
}

/* SERVICES GRID */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
  justify-content: space-between;
}

.service-card {
  background-color: #FFFFFF;
  border-radius: 8px;
  padding: 32px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 24px;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-left: 4px solid #D4AF37;
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 16px;
  color: #0F3A5F;
}

.service-card p {
  flex-grow: 1;
  margin-bottom: 20px;
  color: #5A6C7D;
}

.service-card .price {
  font-size: 24px;
  font-weight: 700;
  color: #D4AF37;
  margin-bottom: 16px;
  display: block;
}

/* BENEFITS GRID */
.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
  justify-content: space-between;
}

.benefit {
  flex: 1 1 calc(50% - 32px);
  min-width: 250px;
  padding: 24px;
  background-color: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border-left: 4px solid #D4AF37;
  margin-bottom: 20px;
}

.benefit h3 {
  font-size: 20px;
  color: #0F3A5F;
  margin-bottom: 12px;
}

.benefit p {
  color: #5A6C7D;
  font-size: 15px;
}

/* STEPS */
.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
  justify-content: space-between;
}

.step {
  flex: 1 1 calc(25% - 32px);
  min-width: 200px;
  text-align: center;
  padding: 24px;
  margin-bottom: 20px;
}

.step-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  background-color: #0F3A5F;
  color: #FFFFFF;
  border-radius: 50%;
  font-size: 28px;
  font-weight: 700;
  line-height: 60px;
  margin-bottom: 16px;
}

.step h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.step p {
  font-size: 14px;
  color: #5A6C7D;
}

/* STATS */
.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-around;
  padding: 40px 0;
}

.stat {
  text-align: center;
  flex: 1 1 200px;
}

.stat strong {
  display: block;
  font-size: 48px;
  color: #D4AF37;
  font-weight: 700;
  margin-bottom: 8px;
  font-family: 'Playfair Display', Georgia, serif;
}

.stat span {
  display: block;
  font-size: 16px;
  color: #5A6C7D;
}

.certification {
  text-align: center;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid #E8E8E8;
  font-size: 14px;
  color: #7D6E4F;
}

/* CTA SECTIONS */
.cta-final,
.cta-section {
  background: linear-gradient(135deg, #0F3A5F 0%, #1B4F72 100%);
  color: #FFFFFF;
  text-align: center;
  border-radius: 8px;
  padding: 60px 40px;
}

.cta-final h2,
.cta-section h2 {
  color: #FFFFFF;
  font-size: 32px;
  margin-bottom: 16px;
}

.cta-final p,
.cta-section p {
  font-size: 18px;
  margin-bottom: 32px;
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* PRICING TABLE */
.pricing-table table {
  width: 100%;
  border-collapse: collapse;
  background-color: #FFFFFF;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  overflow: hidden;
  margin-top: 32px;
}

.pricing-table thead {
  background-color: #0F3A5F;
  color: #FFFFFF;
}

.pricing-table th,
.pricing-table td {
  padding: 16px 24px;
  text-align: left;
  border-bottom: 1px solid #E8E8E8;
}

.pricing-table th {
  font-weight: 600;
  font-size: 16px;
}

.pricing-table tbody tr:hover {
  background-color: #F8F9FA;
}

.pricing-table td:last-child {
  text-align: right;
  font-weight: 700;
  color: #D4AF37;
  font-size: 18px;
}

/* PRICING CARDS */
.pricing-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
  justify-content: space-between;
}

.pricing-card {
  background-color: #FFFFFF;
  border-radius: 8px;
  padding: 32px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  flex: 1 1 calc(25% - 24px);
  min-width: 240px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  margin-bottom: 24px;
}

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

.pricing-card .badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background-color: #D4AF37;
  color: #FFFFFF;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
}

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

.pricing-card .price {
  font-size: 32px;
  font-weight: 700;
  color: #D4AF37;
  margin: 24px 0;
  display: block;
}

/* INFO BOX */
.info-box {
  background-color: #F0F4F8;
  border-left: 4px solid #D4AF37;
  padding: 32px;
  border-radius: 8px;
  margin-bottom: 40px;
}

.info-box h2 {
  color: #0F3A5F;
  margin-bottom: 20px;
}

.info-box ul {
  padding-left: 20px;
}

.info-box li {
  margin-bottom: 12px;
  color: #5A6C7D;
  line-height: 1.6;
}

/* EXPERTISE GRID */
.expertise-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
  justify-content: space-between;
}

.expertise-area {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border-top: 4px solid #D4AF37;
  margin-bottom: 24px;
}

.expertise-area h3 {
  color: #0F3A5F;
  margin-bottom: 12px;
}

.expertise-area p {
  color: #5A6C7D;
}

/* TRUST GRID */
.trust-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
  justify-content: space-between;
}

.trust-item {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 200px;
  text-align: center;
  padding: 24px;
  background-color: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  margin-bottom: 24px;
}

.trust-item strong {
  display: block;
  font-size: 28px;
  color: #D4AF37;
  margin-bottom: 12px;
  font-family: 'Playfair Display', Georgia, serif;
}

.trust-item p {
  font-size: 14px;
  color: #5A6C7D;
  margin: 0;
}

/* TESTIMONIALS */
.testimonial-card {
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 24px;
  border-left: 4px solid #D4AF37;
}

.testimonial-card p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
  color: #2C3E50;
}

.testimonial-card p:last-child {
  margin: 0;
  color: #0F3A5F;
  font-weight: 600;
}

/* CONTACT GRID */
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
  justify-content: space-between;
}

.contact-option {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  border-top: 4px solid #D4AF37;
  margin-bottom: 24px;
}

.contact-option h3 {
  color: #0F3A5F;
  margin-bottom: 16px;
}

.contact-option strong {
  color: #D4AF37;
  font-size: 18px;
}

/* CONTACT FORM */
.form-notice {
  background-color: #FFF9E6;
  border-left: 4px solid #D4AF37;
  padding: 16px 20px;
  margin-bottom: 32px;
  border-radius: 4px;
}

.form-notice p {
  margin: 0;
  color: #7D6E4F;
  font-size: 14px;
}

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

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

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #2C3E50;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #D1D5DB;
  border-radius: 4px;
  font-size: 16px;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #0F3A5F;
  box-shadow: 0 0 0 3px rgba(15, 58, 95, 0.1);
}

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

.form-group .small {
  font-size: 13px;
  color: #7D6E4F;
  margin-top: 8px;
}

.form-group input[type="checkbox"] {
  width: auto;
  margin-right: 8px;
}

/* TRANSPORT INFO */
.transport-info {
  background-color: #F0F4F8;
  padding: 24px;
  border-radius: 8px;
  margin-top: 32px;
}

.transport-info h3 {
  color: #0F3A5F;
  margin-bottom: 16px;
}

.transport-info p {
  margin-bottom: 8px;
  color: #5A6C7D;
}

/* FAQ */
.faq-item {
  background-color: #FFFFFF;
  padding: 24px;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border-left: 4px solid #D4AF37;
}

.faq-item h3 {
  color: #0F3A5F;
  font-size: 18px;
  margin-bottom: 12px;
}

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

/* LEGAL CONTENT */
.legal-content {
  background-color: #FFFFFF;
  padding: 60px 20px;
}

.content-wrapper {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.content-wrapper h2 {
  color: #0F3A5F;
  margin-top: 40px;
  margin-bottom: 20px;
  padding-top: 20px;
  border-top: 2px solid #E8E8E8;
}

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

.content-wrapper ul {
  margin-bottom: 20px;
  padding-left: 40px;
}

.content-wrapper li {
  margin-bottom: 12px;
  color: #5A6C7D;
}

.content-wrapper a {
  color: #0F3A5F;
  text-decoration: underline;
}

.content-wrapper a:hover {
  color: #1B4F72;
}

/* THANK YOU PAGE */
.thank-you-hero {
  text-align: center;
  padding: 80px 20px;
  background-color: #F0F4F8;
}

.success-icon {
  width: 80px;
  height: 80px;
  background-color: #28A745;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 24px;
  font-weight: 700;
}

.links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 32px;
  justify-content: space-between;
}

.link-card {
  flex: 1 1 calc(50% - 20px);
  min-width: 200px;
  background-color: #FFFFFF;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  text-align: center;
  font-weight: 600;
  color: #0F3A5F;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.link-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  background-color: #0F3A5F;
  color: #FFFFFF;
}

.contact-info {
  margin: 24px 0;
}

/* FOOTER */
footer {
  background-color: #1B4F72;
  color: #FFFFFF;
  padding: 60px 20px 20px;
  margin-top: 60px;
}

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

.footer-col {
  flex: 1 1 200px;
  min-width: 200px;
}

.footer-col img {
  margin-bottom: 16px;
  max-width: 150px;
}

.footer-col h4 {
  color: #D4AF37;
  font-size: 18px;
  margin-bottom: 16px;
  font-family: 'Playfair Display', Georgia, serif;
}

.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 12px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-col a:hover {
  color: #D4AF37;
  padding-left: 4px;
}

.footer-col p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.6;
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin: 0;
}

/* COOKIE CONSENT BANNER */
#cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2C3E50;
  color: #FFFFFF;
  padding: 20px;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

#cookie-consent .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

#cookie-consent p {
  margin: 0;
  font-size: 14px;
  flex: 1 1 300px;
}

#cookie-consent a {
  color: #D4AF37;
  text-decoration: underline;
}

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

.cookie-buttons button {
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

#accept-all-cookies {
  background-color: #D4AF37;
  color: #2C3E50;
}

#accept-all-cookies:hover {
  background-color: #E5C04A;
}

#reject-all-cookies {
  background-color: transparent;
  color: #FFFFFF;
  border: 1px solid #FFFFFF;
}

#reject-all-cookies:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

#cookie-settings {
  background-color: transparent;
  color: #D4AF37;
  border: 1px solid #D4AF37;
}

#cookie-settings:hover {
  background-color: rgba(212, 175, 55, 0.1);
}

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

#cookie-modal.show {
  display: flex;
}

.cookie-modal-content {
  background-color: #FFFFFF;
  border-radius: 8px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  color: #2C3E50;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

.cookie-modal-close:hover {
  color: #0F3A5F;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background-color: #F8F9FA;
  border-radius: 4px;
}

.cookie-category h3 {
  color: #0F3A5F;
  margin-bottom: 12px;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-category p {
  color: #5A6C7D;
  font-size: 14px;
  margin: 0;
}

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

.cookie-toggle input[type="checkbox"] {
  width: 48px;
  height: 24px;
  appearance: none;
  background-color: #D1D5DB;
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cookie-toggle input[type="checkbox"]:checked {
  background-color: #0F3A5F;
}

.cookie-toggle input[type="checkbox"]::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: #FFFFFF;
  border-radius: 50%;
  top: 2px;
  left: 2px;
  transition: transform 0.3s ease;
}

.cookie-toggle input[type="checkbox"]:checked::before {
  transform: translateX(24px);
}

.cookie-toggle input[type="checkbox"]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

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

.cookie-modal-buttons button {
  flex: 1;
  padding: 12px 24px;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

#save-cookie-preferences {
  background-color: #0F3A5F;
  color: #FFFFFF;
}

#save-cookie-preferences:hover {
  background-color: #1B4F72;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  /* Typography */
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  h3 { font-size: 20px; }
  
  /* Header */
  .main-nav {
    display: none;
  }
  
  .cta-button {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Hero */
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero .subheadline {
    font-size: 18px;
  }
  
  .cta-group {
    flex-direction: column;
  }
  
  .cta-group .btn-primary,
  .cta-group .btn-secondary {
    width: 100%;
  }
  
  .trust-badges {
    flex-direction: column;
    gap: 16px;
  }
  
  /* Sections */
  .services-preview,
  .why-choose,
  .how-it-works,
  .trust-indicators,
  .cta-final {
    padding: 40px 20px;
  }
  
  /* Grids */
  .services-grid,
  .benefits-grid,
  .steps,
  .stats,
  .expertise-grid,
  .trust-grid,
  .contact-grid,
  .pricing-cards,
  .links-grid {
    flex-direction: column;
  }
  
  .service-card,
  .benefit,
  .step,
  .expertise-area,
  .trust-item,
  .contact-option,
  .pricing-card,
  .link-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
  }
  
  .footer-col {
    flex: 1 1 100%;
  }
  
  /* Cookie consent */
  #cookie-consent .container {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-buttons {
    width: 100%;
  }
  
  .cookie-buttons button {
    flex: 1;
  }
  
  /* Modal */
  .cookie-modal-content {
    padding: 24px;
  }
  
  .cookie-modal-buttons {
    flex-direction: column;
  }
  
  .cookie-modal-buttons button {
    width: 100%;
  }
  
  /* Table */
  .pricing-table {
    overflow-x: auto;
  }
  
  .pricing-table table {
    min-width: 600px;
  }
}

/* Tablet adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
  .service-card,
  .pricing-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .benefit,
  .expertise-area {
    flex: 1 1 calc(50% - 32px);
  }
  
  .step {
    flex: 1 1 calc(50% - 32px);
  }
}

/* Print styles */
@media print {
  header,
  .mobile-menu-toggle,
  .mobile-menu,
  footer,
  .cta-button,
  .btn-primary,
  .btn-secondary,
  #cookie-consent,
  #cookie-modal {
    display: none;
  }
  
  body {
    background-color: #FFFFFF;
  }
  
  .container {
    max-width: 100%;
  }
}