:root {
  --primary-brand: #a77785;
  --secondary-brand: #c4c0b2;
  --tertiary-brand: #d9d9d7;
  --bg-light: #fafbfc;
  --bg-white: #fff;
  --text-dark: #212529;
  --text-medium: #495057;
  --text-light: #6c757d;
  --border-subtle: #e9ecef;
  --shadow-soft: #00000014;
  --gradient-diagonal: linear-gradient(
    135deg,
    var(--primary-brand),
    var(--secondary-brand)
  );
  --transition-smooth: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  color: var(--text-dark);
  background-color: var(--bg-light);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font: clamp(15px, 1.05vw, 17px) / 1.7 "Manrope", -apple-system,
    BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
}
header {
  background: linear-gradient(168deg, #fff 0%, #f8f9fa 100%);
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
  z-index: 100;
}
.editorial_masthead_layer {
  position: relative;
  overflow: hidden;
}
.edition_watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(120px, 18vw, 280px);
  font-weight: 800;
  color: #a7778508;
  letter-spacing: -0.02em;
  pointer-events: none;
  white-space: nowrap;
  z-index: 1;
  user-select: none;
}
.header_toprow_editorial {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px clamp(18px, 5vw, 65px);
  position: relative;
  z-index: 3;
  border-bottom: 1px solid #c4c0b226;
}
.logo_publication_block {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 5;
}
.logo_publication_block img {
  height: 62px;
  width: 62px;
  object-fit: contain;
  display: block;
}
.publication_info_text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.publication_info_text h1 {
  font-size: clamp(18px, 2.1vw, 24px);
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.01em;
}
.tagline_subtext {
  font-size: clamp(12px, 1vw, 14px);
  color: var(--text-medium);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.header_midrow_contact {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px clamp(18px, 5vw, 65px);
  background: linear-gradient(90deg, #c4c0b20d 0%, #a777850a 100%);
  position: relative;
  z-index: 2;
  border-bottom: 1px solid #c4c0b21f;
  gap: clamp(20px, 4vw, 50px);
}
.contact_editorial_item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(13px, 1vw, 15px);
  color: var(--text-medium);
}
.contact_icon_circle {
  width: 32px;
  height: 32px;
  background: linear-gradient(
    135deg,
    var(--primary-brand),
    var(--secondary-brand)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  flex-shrink: 0;
}
.nav_editorial_wrapper {
  display: flex;
  justify-content: center;
  padding: 18px clamp(18px, 5vw, 65px);
  position: relative;
  z-index: 4;
  background: var(--bg-white);
}
.nav_publication_menu {
  display: flex;
  gap: clamp(12px, 2.5vw, 38px);
  list-style: none;
  align-items: center;
}
.nav_publication_menu li a {
  text-decoration: none;
  color: var(--text-dark);
  font-size: clamp(14px, 1.1vw, 16px);
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 8px 14px;
  border-radius: 4px;
  transition: var(--transition-smooth);
  display: inline-block;
  position: relative;
}
.nav_publication_menu li a::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--gradient-diagonal);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}
.nav_publication_menu li a:hover {
  color: var(--primary-brand);
  background: #a777850f;
}
.nav_publication_menu li a:hover::after {
  transform: scaleX(1);
}
.nav_publication_menu li a:focus {
  outline: 2px solid var(--primary-brand);
  outline-offset: 3px;
}
footer {
  background: linear-gradient(175deg, #2a2d35 0%, #1a1c22 100%);
  color: #e8eaed;
  padding: clamp(45px, 6vw, 80px) clamp(18px, 5vw, 65px) 35px;
  border-top: 3px solid var(--primary-brand);
  position: relative;
}
.footer_editorial_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(35px, 5vw, 55px);
  margin-bottom: 45px;
}
.footer_column_publication {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.footer_column_publication h3 {
  font-size: clamp(16px, 1.3vw, 19px);
  font-weight: 700;
  color: var(--tertiary-brand);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 10px;
}
.footer_column_publication h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--gradient-diagonal);
}
.footer_logo_block {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.footer_logo_block img {
  height: 54px;
  width: 54px;
  object-fit: contain;
}
.footer_brand_name {
  font-size: clamp(20px, 2vw, 25px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
}
.footer_address_text {
  font-size: clamp(13px, 1vw, 15px);
  color: #b8bcc4;
  line-height: 1.6;
}
.footer_service_links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer_service_links li a {
  text-decoration: none;
  color: #b8bcc4;
  font-size: clamp(13px, 1vw, 15px);
  transition: var(--transition-smooth);
  display: inline-block;
  position: relative;
  padding-left: 16px;
}
.footer_service_links li a::before {
  content: "→";
  position: absolute;
  left: 0;
  opacity: 0;
  transition: var(--transition-smooth);
}
.footer_service_links li a:hover {
  color: var(--secondary-brand);
  padding-left: 20px;
}
.footer_service_links li a:hover::before {
  opacity: 1;
}
.footer_service_links li a:focus {
  outline: 2px solid var(--secondary-brand);
  outline-offset: 3px;
}
.footer_disclaimer_box {
  background: #d9d9d70f;
  border-left: 3px solid var(--primary-brand);
  padding: 20px 24px;
  margin-top: 35px;
  border-radius: 6px;
}
.footer_disclaimer_box p {
  font-size: clamp(12px, 0.95vw, 14px);
  color: #969ba5;
  line-height: 1.7;
  margin: 0;
}
.footer_bottom_bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  margin-top: 35px;
  border-top: 1px solid #d9d9d71f;
  gap: 20px;
  flex-wrap: wrap;
}
.copyright_text {
  font-size: clamp(12px, 0.95vw, 14px);
  color: #969ba5;
}
.footer_home_link {
  text-decoration: none;
  color: var(--secondary-brand);
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 600;
  transition: var(--transition-smooth);
}
.footer_home_link:hover {
  color: var(--tertiary-brand);
}
.footer_home_link:focus {
  outline: 2px solid var(--secondary-brand);
  outline-offset: 3px;
}
.consent_card_wrapper {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 32px #0000002e 0 2px 8px #a777851f;
  max-width: 420px;
  padding: 26px 28px;
  z-index: 9999;
  border: 1px solid var(--border-subtle);
  animation: slideInCard 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes slideInCard {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.consent_card_wrapper.hidden_consent {
  display: none;
}
.consent_icon_head {
  width: 48px;
  height: 48px;
  background: var(--gradient-diagonal);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 24px;
}
.consent_title_text {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.consent_body_text {
  font-size: 14px;
  color: var(--text-medium);
  line-height: 1.6;
  margin-bottom: 18px;
}
.consent_policy_link {
  color: var(--primary-brand);
  text-decoration: underline;
  font-weight: 600;
  transition: var(--transition-smooth);
}
.consent_policy_link:hover {
  color: var(--secondary-brand);
}
.consent_policy_link:focus {
  outline: 2px solid var(--primary-brand);
  outline-offset: 2px;
  border-radius: 2px;
}
.consent_button_group {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.consent_btn_accept,
.consent_btn_reject {
  flex: 1;
  padding: 11px 18px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
  min-height: 44px;
  font-family: inherit;
}
.consent_btn_accept {
  background: var(--gradient-diagonal);
  color: #fff;
}
.consent_btn_accept:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px #a777854d;
}
.consent_btn_accept:focus {
  outline: 3px solid var(--primary-brand);
  outline-offset: 2px;
}
.consent_btn_reject {
  background: var(--bg-light);
  color: var(--text-dark);
  border: 1px solid var(--border-subtle);
}
.consent_btn_reject:hover {
  background: var(--tertiary-brand);
}
.consent_btn_reject:focus {
  outline: 3px solid var(--text-medium);
  outline-offset: 2px;
}
@media (max-width: 768px) {
  .edition_watermark {
    font-size: 80px;
  }
  .header_toprow_editorial {
    flex-direction: column;
    gap: 16px;
    padding: 18px 20px;
  }
  .logo_publication_block {
    justify-content: center;
  }
  .header_midrow_contact {
    flex-direction: column;
    gap: 14px;
    padding: 14px 20px;
  }
  .nav_editorial_wrapper {
    padding: 14px 20px;
  }
  .nav_publication_menu {
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }
  .nav_publication_menu li {
    width: 100%;
  }
  .nav_publication_menu li a {
    display: block;
    text-align: center;
    padding: 12px;
  }
  .footer_editorial_grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .footer_bottom_bar {
    flex-direction: column;
    align-items: flex-start;
  }
  .consent_card_wrapper {
    left: 15px;
    right: 15px;
    bottom: 15px;
    max-width: none;
    padding: 22px;
  }
  .consent_button_group {
    flex-direction: column;
  }
}
@media (max-width: 480px) {
  .logo_publication_block img {
    height: 52px;
    width: 52px;
  }
  .publication_info_text h1 {
    font-size: 16px;
  }
  .tagline_subtext {
    font-size: 11px;
  }
  .contact_editorial_item {
    font-size: 12px;
  }
  .nav_publication_menu li a {
    font-size: 14px;
  }
}
.about-ElevateGain-page {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  color: #2c2c2c;
  background: #fafbfc;
  line-height: 1.7;
}
.about-hero-wrapper {
  background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
  padding: 90px 20px 80px;
  position: relative;
  overflow: hidden;
}
.about-hero-wrapper::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #a7778514 0%, transparent 70%);
  border-radius: 50%;
}
.about-hero-content-box {
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.about-hero-label {
  display: inline-block;
  padding: 8px 20px;
  background: #a777851f;
  color: #7a5a65;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 25px;
  letter-spacing: 0.5px;
}
.about-hero-title {
  font-size: 48px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 25px;
  line-height: 1.2;
  max-width: 800px;
}
.about-hero-description {
  font-size: 19px;
  color: #4a4a4a;
  margin: 0 0 35px;
  max-width: 680px;
  line-height: 1.65;
}
.about-hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  margin-top: 50px;
  max-width: 900px;
}
.about-stat-card {
  background: #fff;
  padding: 28px 24px;
  border-radius: 12px;
  box-shadow: 0 2px 12px #0000000f;
  border-left: 4px solid #a77785;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.about-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px #0000001a;
}
.about-stat-number {
  font-size: 36px;
  font-weight: 700;
  color: #a77785;
  margin: 0 0 8px;
  line-height: 1;
}
.about-stat-label {
  font-size: 15px;
  color: #5a5a5a;
  margin: 0;
  font-weight: 500;
}
.about-story-section {
  padding: 100px 20px;
  background: #fff;
  position: relative;
}
.about-story-container {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.about-story-image-wrapper {
  position: relative;
}
.about-story-image-wrapper::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #a7778526 0%, #c4c0b226 100%);
  border-radius: 16px;
  z-index: 1;
}
.about-story-main-image {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 16px;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 30px #0000001f;
}
.about-story-text-content {
  padding: 20px 0;
}
.about-story-subtitle {
  font-size: 15px;
  color: #a77785;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin: 0 0 18px;
}
.about-story-heading {
  font-size: 38px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 25px;
  line-height: 1.25;
}
.about-story-paragraph {
  font-size: 17px;
  color: #4a4a4a;
  margin: 0 0 20px;
  line-height: 1.7;
}
.about-story-highlight-box {
  background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
  padding: 28px;
  border-radius: 12px;
  border-left: 4px solid #c4c0b2;
  margin-top: 30px;
}
.about-story-highlight-text {
  font-size: 16px;
  color: #3a3a3a;
  margin: 0;
  line-height: 1.65;
  font-style: italic;
}
.about-approach-section {
  padding: 100px 20px;
  background: linear-gradient(180deg, #fafbfc 0%, #fff 50%, #f8f9fa 100%);
  position: relative;
}
.about-approach-container {
  max-width: 1140px;
  margin: 0 auto;
}
.about-approach-header {
  text-align: center;
  margin-bottom: 70px;
}
.about-approach-title {
  font-size: 42px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 20px;
}
.about-approach-intro {
  font-size: 18px;
  color: #4a4a4a;
  margin: 0 auto;
  max-width: 700px;
  line-height: 1.7;
}
.about-approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.about-approach-visual-column {
  position: relative;
}
.about-approach-image-stack {
  position: relative;
}
.about-approach-image-one {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 6px 24px #0000001a;
  margin-bottom: 25px;
}
.about-approach-image-two {
  width: 85%;
  height: 280px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 6px 24px #0000001a;
  margin-left: auto;
  display: block;
  border: 8px solid #fff;
}
.about-approach-features-column {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.about-approach-feature-item {
  background: #fff;
  padding: 32px;
  border-radius: 14px;
  box-shadow: 0 3px 16px #00000012;
  border-top: 3px solid #a77785;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.about-approach-feature-item:hover {
  transform: translateX(8px);
  box-shadow: 0 6px 24px #0000001f;
}
.about-approach-feature-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #a7778526 0%, #c4c0b226 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 24px;
  color: #a77785;
}
.about-approach-feature-title {
  font-size: 21px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 12px;
}
.about-approach-feature-text {
  font-size: 16px;
  color: #4a4a4a;
  margin: 0;
  line-height: 1.65;
}
.about-cta-wrapper {
  background: linear-gradient(135deg, #a77785 0%, #8d6673 100%);
  padding: 70px 20px;
  margin-top: 80px;
  border-radius: 20px;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.about-cta-wrapper::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #ffffff1a 0%, transparent 70%);
  border-radius: 50%;
}
.about-cta-title {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 18px;
  position: relative;
  z-index: 2;
}
.about-cta-text {
  font-size: 18px;
  color: #fffffff2;
  margin: 0 0 35px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}
.about-cta-button {
  display: inline-block;
  padding: 16px 40px;
  background: #fff;
  color: #a77785;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 16px #00000026;
  position: relative;
  z-index: 2;
}
.about-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px #0003;
  color: #8d6673;
}
@media (max-width: 968px) {
  .about-hero-title {
    font-size: 38px;
  }
  .about-hero-stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .about-story-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .about-story-image-wrapper::before {
    display: none;
  }
  .about-approach-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .about-approach-image-two {
    width: 100%;
    margin-left: 0;
  }
}
@media (max-width: 640px) {
  .about-hero-wrapper {
    padding: 60px 20px 50px;
  }
  .about-hero-title {
    font-size: 32px;
  }
  .about-hero-description {
    font-size: 17px;
  }
  .about-hero-stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .about-story-section,
  .about-approach-section {
    padding: 60px 20px;
  }
  .about-story-heading {
    font-size: 30px;
  }
  .about-approach-title {
    font-size: 32px;
  }
  .about-story-main-image,
  .about-approach-image-one {
    height: 320px;
  }
  .about-approach-image-two {
    height: 240px;
  }
  .about-cta-wrapper {
    padding: 50px 20px;
    margin-top: 60px;
  }
  .about-cta-title {
    font-size: 28px;
  }
}
.case-studies-main-wrapper {
  background: #fff;
  min-height: 100vh;
}
.case-studies-hero-section {
  background: linear-gradient(135deg, #fafbfc 0%, #f8f9fa 100%);
  padding: 80px 20px 60px;
  position: relative;
  overflow: hidden;
}
.case-studies-hero-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #a7778514 0%, transparent 70%);
  border-radius: 50%;
}
.case-studies-hero-content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.case-studies-hero-title {
  font-size: 48px;
  color: #212529;
  margin: 0 0 24px;
  font-weight: 700;
  line-height: 1.2;
}
.case-studies-hero-description {
  font-size: 20px;
  color: #495057;
  line-height: 1.6;
  max-width: 700px;
  margin: 0;
}
.case-studies-grid-block {
  padding: 90px 20px;
  background: #fff;
}
.case-studies-grid-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}
.case-study-card-item {
  background: #fafbfc;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.case-study-card-item:hover {
  transform: translateY(-8px);
  border-color: #a77785;
  box-shadow: 0 12px 24px #a7778526;
}
.case-study-image-wrapper {
  width: 100%;
  height: 260px;
  overflow: hidden;
  position: relative;
}
.case-study-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.case-study-card-item:hover .case-study-image-wrapper img {
  transform: scale(1.08);
}
.case-study-content-area {
  padding: 32px 28px;
}
.case-study-category-tag {
  display: inline-block;
  background: #a77785;
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.case-study-card-title {
  font-size: 24px;
  color: #212529;
  margin: 0 0 14px;
  font-weight: 700;
  line-height: 1.3;
}
.case-study-excerpt-text {
  font-size: 16px;
  color: #495057;
  line-height: 1.6;
  margin: 0 0 20px;
}
.case-study-metrics-row {
  display: flex;
  gap: 24px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #d9d9d7;
}
.case-study-metric-item {
  flex: 1;
}
.case-study-metric-value {
  font-size: 28px;
  color: #a77785;
  font-weight: 700;
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}
.case-study-metric-label {
  font-size: 13px;
  color: #6c757d;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.case-studies-timeline-section {
  background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
  padding: 90px 20px;
  position: relative;
}
.timeline-section-header {
  max-width: 800px;
  margin: 0 auto 60px;
  text-align: center;
}
.timeline-section-title {
  font-size: 40px;
  color: #212529;
  margin: 0 0 18px;
  font-weight: 700;
}
.timeline-section-subtitle {
  font-size: 18px;
  color: #495057;
  line-height: 1.6;
  margin: 0;
}
.timeline-wrapper-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}
.timeline-vertical-line {
  position: absolute;
  left: 60px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #a77785 0%, #c4c0b2 100%);
}
.timeline-item-block {
  position: relative;
  padding-left: 140px;
  margin-bottom: 60px;
}
.timeline-marker-circle {
  position: absolute;
  left: 44px;
  top: 8px;
  width: 32px;
  height: 32px;
  background: #a77785;
  border: 4px solid #fff;
  border-radius: 50%;
  box-shadow: 0 4px 12px #a777854d;
  z-index: 2;
}
.timeline-date-label {
  position: absolute;
  left: 0;
  top: 10px;
  font-size: 14px;
  color: #6c757d;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  writing-mode: horizontal-tb;
}
.timeline-content-box {
  background: #fff;
  padding: 28px 32px;
  border-radius: 12px;
  border-left: 4px solid #a77785;
  box-shadow: 0 4px 16px #0000000f;
}
.timeline-item-heading {
  font-size: 22px;
  color: #212529;
  margin: 0 0 12px;
  font-weight: 700;
}
.timeline-item-description {
  font-size: 16px;
  color: #495057;
  line-height: 1.6;
  margin: 0;
}
.case-studies-results-showcase {
  padding: 90px 20px;
  background: #fafbfc;
}
.results-showcase-container {
  max-width: 1200px;
  margin: 0 auto;
}
.results-header-section {
  text-align: center;
  margin-bottom: 50px;
}
.results-main-title {
  font-size: 40px;
  color: #212529;
  margin: 0 0 20px;
  font-weight: 700;
}
.results-intro-text {
  font-size: 18px;
  color: #495057;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}
.results-split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.results-content-column {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px #0000000d;
}
.results-subsection-heading {
  font-size: 26px;
  color: #212529;
  margin: 0 0 24px;
  font-weight: 700;
  padding-bottom: 16px;
  border-bottom: 3px solid #a77785;
}
.results-list-items {
  list-style: none;
  padding: 0;
  margin: 0;
}
.results-list-items li {
  padding: 16px 0 16px 40px;
  position: relative;
  font-size: 16px;
  color: #495057;
  line-height: 1.6;
  border-bottom: 1px solid #f0f0f0;
}
.results-list-items li:last-child {
  border-bottom: none;
}
.results-list-items li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 28px;
  height: 28px;
  background: #a77785;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}
.results-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}
.results-stat-box {
  background: linear-gradient(135deg, #fafbfc 0%, #f8f9fa 100%);
  padding: 28px;
  border-radius: 10px;
  text-align: center;
  border: 2px solid #d9d9d7;
}
.results-stat-number {
  font-size: 36px;
  color: #a77785;
  font-weight: 700;
  display: block;
  margin-bottom: 8px;
}
.results-stat-label {
  font-size: 14px;
  color: #6c757d;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.case-studies-cta-final {
  background: linear-gradient(135deg, #a77785 0%, #c4c0b2 100%);
  padding: 80px 20px;
  text-align: center;
}
.cta-final-container {
  max-width: 800px;
  margin: 0 auto;
}
.cta-final-heading {
  font-size: 38px;
  color: #fff;
  margin: 0 0 20px;
  font-weight: 700;
  line-height: 1.3;
}
.cta-final-text {
  font-size: 18px;
  color: #fff;
  line-height: 1.6;
  margin: 0 0 32px;
  opacity: 0.95;
}
.cta-buttons-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-button-primary {
  background: #fff;
  color: #a77785;
  padding: 16px 40px;
  border-radius: 8px;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  border: 2px solid #fff;
}
.cta-button-primary:hover {
  background: transparent;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px #00000026;
}
.cta-button-secondary {
  background: transparent;
  color: #fff;
  padding: 16px 40px;
  border-radius: 8px;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  border: 2px solid #fff;
}
.cta-button-secondary:hover {
  background: #fff;
  color: #a77785;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px #00000026;
}
@media (max-width: 768px) {
  .case-studies-hero-title {
    font-size: 36px;
  }
  .case-studies-hero-description {
    font-size: 18px;
  }
  .case-studies-grid-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .case-study-metrics-row {
    flex-direction: column;
    gap: 16px;
  }
  .timeline-section-title {
    font-size: 32px;
  }
  .timeline-vertical-line {
    left: 20px;
  }
  .timeline-item-block {
    padding-left: 70px;
  }
  .timeline-marker-circle {
    left: 4px;
  }
  .timeline-date-label {
    position: static;
    display: block;
    margin-bottom: 10px;
  }
  .results-main-title {
    font-size: 32px;
  }
  .results-split-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .results-stats-grid {
    grid-template-columns: 1fr;
  }
  .cta-final-heading {
    font-size: 30px;
  }
  .cta-buttons-group {
    flex-direction: column;
    align-items: stretch;
  }
  .cta-button-primary,
  .cta-button-secondary {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .case-studies-hero-section {
    padding: 60px 15px 40px;
  }
  .case-studies-hero-title {
    font-size: 28px;
  }
  .case-study-card-title {
    font-size: 20px;
  }
  .timeline-content-box {
    padding: 20px;
  }
  .results-content-column {
    padding: 28px 20px;
  }
}
.index-hero-wrap {
  background: linear-gradient(135deg, #fafbfc 0%, #f5f6fa 100%);
  padding: 5rem 1.5rem 4rem;
  position: relative;
  overflow: hidden;
}
.index-hero-wrap::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 70%;
  height: 200%;
  background: radial-gradient(ellipse at center, #a7778514 0%, transparent 70%);
  pointer-events: none;
}
.index-hero-content {
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.index-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.index-hero-text h1 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #212529;
  margin: 0 0 1.5rem;
  line-height: 1.2;
}
.index-hero-text p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #495057;
  margin: 0 0 2rem;
}
.index-hero-img {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px #a7778526;
}
.index-hero-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}
.index-cta-primary {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  background: #a77785;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px #a7778540;
}
.index-cta-primary:hover {
  background: #954d60;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px #a7778559;
}
.index-metrics-section {
  background: #fff;
  padding: 3rem 1.5rem;
  border-top: 1px solid #d9d9d7;
  border-bottom: 1px solid #d9d9d7;
}
.index-metrics-container {
  max-width: 1140px;
  margin: 0 auto;
}
.index-metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.index-metric-item {
  text-align: center;
  padding: 1.5rem;
  background: #fafbfc;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.index-metric-item:hover {
  background: #f5f6fa;
  transform: translateY(-4px);
  box-shadow: 0 6px 16px #a777851f;
}
.index-metric-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #a77785;
  margin: 0 0 0.5rem;
  line-height: 1;
}
.index-metric-label {
  font-size: 0.95rem;
  color: #495057;
  margin: 0;
  line-height: 1.4;
}
.index-approach-section {
  background: linear-gradient(to bottom, #f8f9fa 0%, #fff 100%);
  padding: 5rem 1.5rem;
  position: relative;
}
.index-approach-container {
  max-width: 1140px;
  margin: 0 auto;
}
.index-approach-header {
  text-align: left;
  margin-bottom: 3.5rem;
  max-width: 700px;
}
.index-approach-header h2 {
  font-size: 2.3rem;
  font-weight: 700;
  color: #212529;
  margin: 0 0 1rem;
  line-height: 1.3;
}
.index-approach-header p {
  font-size: 1.1rem;
  color: #495057;
  line-height: 1.7;
  margin: 0;
}
.index-approach-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: start;
}
.index-approach-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.index-approach-block {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  border-left: 4px solid #a77785;
  box-shadow: 0 2px 8px #0000000a;
  transition: all 0.3s ease;
}
.index-approach-block:hover {
  border-left-color: #954d60;
  box-shadow: 0 4px 16px #a7778526;
  transform: translateX(4px);
}
.index-approach-block h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #212529;
  margin: 0 0 0.8rem;
  line-height: 1.3;
}
.index-approach-block p {
  font-size: 1rem;
  color: #495057;
  line-height: 1.7;
  margin: 0;
}
.index-approach-visual {
  position: sticky;
  top: 2rem;
}
.index-approach-img {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px #a7778526;
}
.index-approach-img img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}
.index-timeline-section {
  background: #fff;
  padding: 5rem 1.5rem;
  position: relative;
}
.index-timeline-container {
  max-width: 1140px;
  margin: 0 auto;
}
.index-timeline-intro {
  text-align: center;
  margin-bottom: 4rem;
}
.index-timeline-intro h2 {
  font-size: 2.3rem;
  font-weight: 700;
  color: #212529;
  margin: 0 0 1rem;
  line-height: 1.3;
}
.index-timeline-intro p {
  font-size: 1.1rem;
  color: #495057;
  line-height: 1.7;
  margin: 0 auto;
  max-width: 720px;
}
.index-timeline-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}
.index-timeline-card {
  background: #fafbfc;
  padding: 2.5rem;
  border-radius: 10px;
  position: relative;
  border: 2px solid #d9d9d7;
  transition: all 0.3s ease;
}
.index-timeline-card::before {
  content: "";
  position: absolute;
  top: 2.5rem;
  left: -60px;
  width: 40px;
  height: 40px;
  background: #a77785;
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 0 2px 8px #a777854d;
}
.index-timeline-card:hover {
  border-color: #a77785;
  background: #fff;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px #a7778526;
}
.index-timeline-step {
  font-size: 0.85rem;
  font-weight: 600;
  color: #a77785;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 0.8rem;
}
.index-timeline-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #212529;
  margin: 0 0 1rem;
  line-height: 1.3;
}
.index-timeline-card p {
  font-size: 1rem;
  color: #495057;
  line-height: 1.7;
  margin: 0;
}
.index-timeline-visual-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}
.index-timeline-img-box {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 16px #a777851f;
}
.index-timeline-img-box img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.index-timeline-img-box:hover img {
  transform: scale(1.05);
}
.index-cta-section {
  background: linear-gradient(135deg, #a77785 0%, #954d60 100%);
  padding: 4rem 1.5rem;
  text-align: center;
}
.index-cta-container {
  max-width: 800px;
  margin: 0 auto;
}
.index-cta-section h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 1rem;
  line-height: 1.3;
}
.index-cta-section p {
  font-size: 1.1rem;
  color: #fffffff2;
  line-height: 1.7;
  margin: 0 0 2rem;
}
.index-cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
.index-cta-btn-white {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  background: #fff;
  color: #a77785;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px #00000026;
}
.index-cta-btn-white:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px #00000040;
}
.index-cta-btn-outline {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  background: transparent;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  border: 2px solid #fff;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s ease;
}
.index-cta-btn-outline:hover {
  background: #ffffff26;
  transform: translateY(-2px);
}
@media (max-width: 992px) {
  .index-hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .index-hero-text h1 {
    font-size: 2.3rem;
  }
  .index-metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .index-approach-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .index-approach-visual {
    position: relative;
    top: 0;
  }
  .index-timeline-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .index-timeline-card::before {
    left: 50%;
    top: -50px;
    transform: translateX(-50%);
  }
  .index-timeline-visual-row {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .index-hero-wrap {
    padding: 3rem 1rem 2.5rem;
  }
  .index-hero-text h1 {
    font-size: 1.9rem;
  }
  .index-hero-text p {
    font-size: 1rem;
  }
  .index-hero-img img {
    height: 320px;
  }
  .index-metrics-section {
    padding: 2rem 1rem;
  }
  .index-metrics-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .index-approach-section,
  .index-timeline-section {
    padding: 3rem 1rem;
  }
  .index-approach-header h2,
  .index-timeline-intro h2 {
    font-size: 1.9rem;
  }
  .index-approach-img img {
    height: 380px;
  }
  .index-timeline-img-box img {
    height: 260px;
  }
  .index-cta-section {
    padding: 3rem 1rem;
  }
  .index-cta-section h2 {
    font-size: 1.8rem;
  }
  .index-cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
}
.contact-page-wrapper {
  background: linear-gradient(135deg, #fafbfc 0%, #f8f9fa 100%);
  min-height: 100vh;
}
.contact-hero-section {
  padding: 80px 20px 60px;
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}
.contact-hero-section h1 {
  font-size: 2.8rem;
  color: #212529;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}
.contact-hero-section .subtitle-text {
  font-size: 1.15rem;
  color: #495057;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.6;
}
.contact-main-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px 80px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.contact-info-block {
  background: #fff;
  padding: 50px 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px #a7778514;
  position: sticky;
  top: 30px;
}
.contact-info-block h2 {
  font-size: 1.9rem;
  color: #212529;
  margin-bottom: 30px;
  font-weight: 600;
}
.contact-detail-item {
  margin-bottom: 35px;
  display: flex;
  align-items: start;
  gap: 18px;
}
.contact-icon-wrapper {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #a77785 0%, #c4c0b2 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon-wrapper i {
  font-size: 22px;
  color: #fff;
}
.contact-detail-content h3 {
  font-size: 1.05rem;
  color: #343a40;
  margin-bottom: 8px;
  font-weight: 600;
}
.contact-detail-content p {
  font-size: 0.98rem;
  color: #495057;
  line-height: 1.6;
  margin: 0;
}
.contact-detail-content a {
  color: #a77785;
  text-decoration: none;
  transition: color 0.3s ease;
}
.contact-detail-content a:hover {
  color: #8d6270;
  text-decoration: underline;
}
.contact-form-wrapper {
  background: #fff;
  padding: 50px 45px;
  border-radius: 12px;
  box-shadow: 0 4px 20px #a7778514;
}
.contact-form-wrapper h2 {
  font-size: 1.9rem;
  color: #212529;
  margin-bottom: 15px;
  font-weight: 600;
}
.contact-form-wrapper .form-intro-text {
  font-size: 1rem;
  color: #495057;
  margin-bottom: 35px;
  line-height: 1.6;
}
.form-group-custom {
  margin-bottom: 28px;
}
.form-group-custom label {
  display: block;
  font-size: 0.95rem;
  color: #343a40;
  margin-bottom: 10px;
  font-weight: 500;
}
.form-group-custom input,
.form-group-custom textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #d9d9d7;
  border-radius: 8px;
  font-size: 0.98rem;
  color: #212529;
  transition: all 0.3s ease;
  background: #fafbfc;
  font-family: inherit;
}
.form-group-custom input:focus,
.form-group-custom textarea:focus {
  outline: none;
  border-color: #a77785;
  background: #fff;
  box-shadow: 0 0 0 3px #a777851a;
}
.form-group-custom textarea {
  min-height: 160px;
  resize: vertical;
}
.checkbox-group-custom {
  margin: 30px 0;
  display: flex;
  align-items: start;
  gap: 12px;
}
.checkbox-group-custom input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 3px;
  cursor: pointer;
  flex-shrink: 0;
}
.checkbox-group-custom label {
  font-size: 0.92rem;
  color: #495057;
  line-height: 1.5;
  cursor: pointer;
}
.checkbox-group-custom a {
  color: #a77785;
  text-decoration: none;
  font-weight: 500;
}
.checkbox-group-custom a:hover {
  text-decoration: underline;
}
.submit-button-custom {
  background: linear-gradient(135deg, #a77785 0%, #8d6270 100%);
  color: #fff;
  border: none;
  padding: 16px 45px;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px #a7778540;
  width: 100%;
}
.submit-button-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px #a7778559;
  background: linear-gradient(135deg, #8d6270 0%, #7a5461 100%);
}
.submit-button-custom:active {
  transform: translateY(0);
}
.visual-section-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 20px 80px;
}
.visual-content-block {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 50px;
  align-items: center;
  background: #fff;
  padding: 60px;
  border-radius: 12px;
  box-shadow: 0 4px 20px #a7778514;
}
.visual-text-area h2 {
  font-size: 2rem;
  color: #212529;
  margin-bottom: 20px;
  font-weight: 600;
  line-height: 1.3;
}
.visual-text-area p {
  font-size: 1.02rem;
  color: #495057;
  line-height: 1.7;
  margin-bottom: 18px;
}
.visual-text-area .highlight-box {
  background: linear-gradient(135deg, #fafbfc 0%, #f8f9fa 100%);
  padding: 25px;
  border-left: 4px solid #a77785;
  border-radius: 8px;
  margin-top: 25px;
}
.visual-text-area .highlight-box p {
  margin: 0;
  font-size: 1rem;
  color: #343a40;
  font-weight: 500;
}
.visual-image-area {
  position: relative;
}
.visual-image-area img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 30px #a7778526;
}
.location-details-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px 80px;
}
.location-grid-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.location-card-item {
  background: #fff;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px #a7778514;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.location-card-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px #a7778526;
  border-color: #d9d9d7;
}
.location-card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #a77785 0%, #c4c0b2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}
.location-card-icon i {
  font-size: 32px;
  color: #fff;
}
.location-card-item h3 {
  font-size: 1.3rem;
  color: #212529;
  margin-bottom: 15px;
  font-weight: 600;
}
.location-card-item p {
  font-size: 0.98rem;
  color: #495057;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 1024px) {
  .contact-main-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-info-block {
    position: static;
  }
  .visual-content-block {
    grid-template-columns: 1fr;
    padding: 40px;
  }
  .location-grid-wrapper {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .contact-hero-section h1 {
    font-size: 2.2rem;
  }
  .contact-hero-section {
    padding: 60px 20px 40px;
  }
  .contact-info-block,
  .contact-form-wrapper {
    padding: 35px 25px;
  }
  .visual-content-block {
    padding: 30px 20px;
  }
  .visual-image-area img {
    height: 300px;
  }
  .location-card-item {
    padding: 30px 20px;
  }
}
.pricing-page-wrapper {
  background: #fafbfc;
  min-height: 100vh;
}
.pricing-hero-section {
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  padding: 80px 20px 60px;
  position: relative;
  overflow: hidden;
}
.pricing-hero-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #a7778514 0%, transparent 70%);
  border-radius: 50%;
}
.pricing-hero-content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.pricing-hero-content h1 {
  font-size: 48px;
  color: #212529;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}
.pricing-hero-content .subtitle-text {
  font-size: 20px;
  color: #495057;
  margin-bottom: 35px;
  line-height: 1.6;
  max-width: 700px;
}
.pricing-cards-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}
.price-card-item {
  background: #fff;
  border-radius: 12px;
  padding: 40px 30px;
  box-shadow: 0 4px 16px #00000014;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid #f5f6fa;
  position: relative;
}
.price-card-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px #a7778526;
  border-color: #a77785;
}
.price-card-item.featured-plan {
  border-color: #a77785;
  background: linear-gradient(135deg, #fff 0%, #fafbfc 100%);
}
.featured-badge {
  position: absolute;
  top: -12px;
  right: 30px;
  background: #a77785;
  color: #fff;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.price-card-item h3 {
  font-size: 28px;
  color: #212529;
  margin-bottom: 12px;
  font-weight: 700;
}
.price-amount {
  font-size: 48px;
  color: #a77785;
  font-weight: 800;
  margin-bottom: 8px;
  line-height: 1;
}
.price-amount .currency-symbol {
  font-size: 32px;
  vertical-align: super;
  margin-right: 4px;
}
.price-period {
  font-size: 16px;
  color: #6c757d;
  margin-bottom: 25px;
  display: block;
}
.features-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}
.features-list li {
  padding: 12px 0;
  color: #495057;
  font-size: 16px;
  line-height: 1.5;
  position: relative;
  padding-left: 30px;
}
.features-list li::before {
  content: "";
  position: absolute;
  left: 0;
  color: #a77785;
  font-weight: 700;
  font-size: 18px;
}
.plan-cta-button {
  width: 100%;
  padding: 16px 30px;
  background: #a77785;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 20px;
}
.plan-cta-button:hover {
  background: #8e6570;
  transform: scale(1.02);
  box-shadow: 0 6px 20px #a777854d;
}
.plan-cta-button.secondary-btn {
  background: transparent;
  border: 2px solid #a77785;
  color: #a77785;
}
.plan-cta-button.secondary-btn:hover {
  background: #a77785;
  color: #fff;
}
.comparison-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
  background: #fff;
}
.comparison-section h2 {
  font-size: 38px;
  color: #212529;
  margin-bottom: 20px;
  font-weight: 700;
  text-align: center;
}
.comparison-intro {
  font-size: 18px;
  color: #495057;
  text-align: center;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.comparison-table-wrapper {
  overflow-x: auto;
  border-radius: 12px;
  box-shadow: 0 4px 20px #0000000f;
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}
.comparison-table thead {
  background: linear-gradient(135deg, #a77785 0%, #8e6570 100%);
}
.comparison-table th {
  padding: 20px 16px;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  text-align: left;
  border-bottom: 3px solid #c4c0b2;
}
.comparison-table th:first-child {
  border-top-left-radius: 12px;
}
.comparison-table th:last-child {
  border-top-right-radius: 12px;
}
.comparison-table tbody tr {
  border-bottom: 1px solid #f5f6fa;
  transition: background 0.2s ease;
}
.comparison-table tbody tr:hover {
  background: #fafbfc;
}
.comparison-table td {
  padding: 18px 16px;
  color: #495057;
  font-size: 15px;
  vertical-align: middle;
}
.comparison-table td:first-child {
  font-weight: 600;
  color: #212529;
}
.check-mark {
  color: #a77785;
  font-size: 20px;
  font-weight: 700;
}
.cross-mark {
  color: #c4c0b2;
  font-size: 18px;
}
.visual-showcase-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
  position: relative;
}
.showcase-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.showcase-content-side h2 {
  font-size: 36px;
  color: #212529;
  margin-bottom: 24px;
  font-weight: 700;
  line-height: 1.3;
}
.showcase-content-side p {
  font-size: 17px;
  color: #495057;
  line-height: 1.7;
  margin-bottom: 18px;
}
.showcase-highlights {
  margin-top: 30px;
  padding: 25px;
  background: #fff;
  border-radius: 10px;
  border-left: 4px solid #a77785;
  box-shadow: 0 2px 12px #0000000d;
}
.showcase-highlights h4 {
  font-size: 20px;
  color: #212529;
  margin-bottom: 16px;
  font-weight: 600;
}
.showcase-highlights ul {
  list-style: none;
  padding: 0;
}
.showcase-highlights li {
  padding: 8px 0;
  color: #495057;
  font-size: 16px;
  padding-left: 26px;
  position: relative;
}
.showcase-highlights li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #a77785;
  font-weight: 700;
}
.showcase-image-side {
  position: relative;
}
.showcase-image-side img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 30px #0000001f;
}
.faq-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 20px;
  background: #fff;
}
.faq-section h2 {
  font-size: 38px;
  color: #212529;
  margin-bottom: 50px;
  font-weight: 700;
  text-align: center;
}
.faq-item {
  margin-bottom: 20px;
  border: 2px solid #f5f6fa;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-item:hover {
  border-color: #c4c0b2;
  box-shadow: 0 4px 16px #0000000f;
}
.faq-question {
  background: #fafbfc;
  padding: 24px 28px;
  cursor: pointer;
  font-size: 19px;
  font-weight: 600;
  color: #212529;
  position: relative;
  transition: background 0.3s ease;
}
.faq-question:hover {
  background: #f5f6fa;
}
.faq-question::after {
  content: "+";
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
  color: #a77785;
  font-weight: 400;
  transition: transform 0.3s ease;
}
.faq-item input[type="checkbox"] {
  display: none;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  background: #fff;
  padding: 0 28px;
}
.faq-item input[type="checkbox"]:checked ~ .faq-answer {
  max-height: 400px;
  padding: 24px 28px;
}
.faq-item input[type="checkbox"]:checked ~ .faq-question::after {
  content: "−";
  transform: translateY(-50%) rotate(180deg);
}
.faq-answer p {
  font-size: 16px;
  color: #495057;
  line-height: 1.7;
  margin: 0;
}
@media (max-width: 968px) {
  .pricing-hero-content h1 {
    font-size: 36px;
  }
  .pricing-cards-container {
    grid-template-columns: 1fr;
    padding: 40px 20px;
  }
  .showcase-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .showcase-image-side {
    order: -1;
  }
  .comparison-table-wrapper {
    border-radius: 8px;
  }
  .comparison-table th,
  .comparison-table td {
    padding: 14px 12px;
    font-size: 14px;
  }
}
@media (max-width: 640px) {
  .pricing-hero-section {
    padding: 50px 16px 40px;
  }
  .pricing-hero-content h1 {
    font-size: 30px;
  }
  .pricing-hero-content .subtitle-text {
    font-size: 17px;
  }
  .price-card-item {
    padding: 30px 20px;
  }
  .price-amount {
    font-size: 40px;
  }
  .comparison-section,
  .faq-section {
    padding: 50px 16px;
  }
  .comparison-section h2,
  .faq-section h2 {
    font-size: 30px;
  }
  .showcase-image-side img {
    height: 320px;
  }
}
.cookie-policy-wrapper {
  background: linear-gradient(135deg, #fff 0%, #fafbfc 50%, #f8f9fa 100%);
  min-height: 100vh;
  padding: 0;
}
.cookie-hero-block {
  background: linear-gradient(to right, #f8f9fa, #fff);
  padding: 80px 20px 60px;
  position: relative;
  overflow: hidden;
}
.cookie-hero-block::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #a7778514 0%, transparent 70%);
  border-radius: 50%;
}
.cookie-content-container {
  max-width: 920px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.cookie-main-title {
  font-size: 2.8rem;
  color: #212529;
  margin: 0 0 16px;
  font-weight: 700;
  line-height: 1.2;
}
.cookie-update-date {
  font-size: 0.95rem;
  color: #6c757d;
  margin: 0 0 32px;
  font-style: italic;
}
.cookie-intro-text {
  font-size: 1.1rem;
  color: #495057;
  line-height: 1.7;
  margin: 0;
}
.cookie-main-content {
  max-width: 920px;
  margin: 0 auto;
  padding: 60px 20px 80px;
}
.cookie-section-block {
  background: #fff;
  border-left: 4px solid #a77785;
  padding: 40px;
  margin: 0 0 40px;
  border-radius: 8px;
  box-shadow: 0 2px 12px #0000000f;
}
.cookie-section-title {
  font-size: 1.9rem;
  color: #212529;
  margin: 0 0 24px;
  font-weight: 600;
  position: relative;
  padding-left: 20px;
}
.cookie-section-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: #a77785;
  border-radius: 50%;
}
.cookie-text-paragraph {
  font-size: 1.05rem;
  color: #343a40;
  line-height: 1.8;
  margin: 0 0 20px;
}
.cookie-text-paragraph:last-child {
  margin-bottom: 0;
}
.cookie-subsection-title {
  font-size: 1.4rem;
  color: #212529;
  margin: 32px 0 16px;
  font-weight: 600;
}
.cookie-list-items {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}
.cookie-list-items li {
  padding: 16px 0 16px 48px;
  position: relative;
  font-size: 1.05rem;
  color: #343a40;
  line-height: 1.7;
  border-bottom: 1px solid #f0f0f0;
}
.cookie-list-items li:last-child {
  border-bottom: none;
}
.cookie-list-items li::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 24px;
  width: 12px;
  height: 12px;
  background: linear-gradient(135deg, #a77785 0%, #c4c0b2 100%);
  border-radius: 3px;
  transform: rotate(45deg);
}
.cookie-type-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 32px 0;
}
.cookie-type-card {
  background: linear-gradient(135deg, #fafbfc 0%, #fff 100%);
  border: 2px solid #d9d9d7;
  border-radius: 10px;
  padding: 28px;
  transition: all 0.3s ease;
}
.cookie-type-card:hover {
  border-color: #a77785;
  box-shadow: 0 4px 16px #a7778526;
  transform: translateY(-4px);
}
.cookie-type-name {
  font-size: 1.25rem;
  color: #a77785;
  margin: 0 0 12px;
  font-weight: 600;
}
.cookie-type-description {
  font-size: 1rem;
  color: #495057;
  line-height: 1.6;
  margin: 0;
}
.cookie-info-box {
  background: linear-gradient(to right, #a777850d, #c4c0b20d);
  border-left: 5px solid #c4c0b2;
  padding: 24px 28px;
  margin: 32px 0;
  border-radius: 6px;
}
.cookie-info-box p {
  font-size: 1.05rem;
  color: #343a40;
  line-height: 1.7;
  margin: 0 0 12px;
}
.cookie-info-box p:last-child {
  margin-bottom: 0;
}
.cookie-highlight-text {
  background: linear-gradient(120deg, #a777851a 0%, transparent 100%);
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 500;
  color: #212529;
}
.cookie-table-wrapper {
  overflow-x: auto;
  margin: 32px 0;
  border-radius: 8px;
  box-shadow: 0 2px 8px #00000014;
}
.cookie-comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}
.cookie-comparison-table thead {
  background: linear-gradient(135deg, #a77785 0%, #c4c0b2 100%);
}
.cookie-comparison-table th {
  padding: 18px 16px;
  text-align: left;
  font-size: 1.05rem;
  color: #fff;
  font-weight: 600;
}
.cookie-comparison-table td {
  padding: 16px;
  border-bottom: 1px solid #f0f0f0;
  font-size: 1rem;
  color: #343a40;
  line-height: 1.6;
}
.cookie-comparison-table tbody tr:hover {
  background: #fafbfc;
}
.cookie-browser-steps {
  background: #fff;
  border: 2px solid #d9d9d7;
  border-radius: 10px;
  padding: 32px;
  margin: 32px 0;
}
.cookie-browser-name {
  font-size: 1.3rem;
  color: #a77785;
  margin: 0 0 16px;
  font-weight: 600;
}
.cookie-steps-list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: step-counter;
}
.cookie-steps-list li {
  padding: 14px 0 14px 52px;
  position: relative;
  font-size: 1.05rem;
  color: #343a40;
  line-height: 1.7;
  counter-increment: step-counter;
}
.cookie-steps-list li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 10px;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #a77785 0%, #c4c0b2 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.95rem;
}
.cookie-contact-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
  border: 2px solid #c4c0b2;
  border-radius: 12px;
  padding: 40px;
  margin: 48px 0 0;
  text-align: center;
}
.cookie-contact-title {
  font-size: 1.6rem;
  color: #212529;
  margin: 0 0 16px;
  font-weight: 600;
}
.cookie-contact-text {
  font-size: 1.05rem;
  color: #495057;
  line-height: 1.7;
  margin: 0 0 12px;
}
.cookie-contact-link {
  color: #a77785;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
}
.cookie-contact-link:hover {
  border-bottom-color: #a77785;
}
@media (max-width: 768px) {
  .cookie-hero-block {
    padding: 60px 16px 40px;
  }
  .cookie-main-title {
    font-size: 2rem;
  }
  .cookie-intro-text {
    font-size: 1.05rem;
  }
  .cookie-main-content {
    padding: 40px 16px 60px;
  }
  .cookie-section-block {
    padding: 28px 20px;
  }
  .cookie-section-title {
    font-size: 1.5rem;
  }
  .cookie-type-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .cookie-type-card {
    padding: 20px;
  }
  .cookie-browser-steps {
    padding: 24px 16px;
  }
  .cookie-contact-section {
    padding: 28px 20px;
  }
  .cookie-comparison-table th,
  .cookie-comparison-table td {
    padding: 12px 10px;
    font-size: 0.95rem;
  }
}
@media (max-width: 480px) {
  .cookie-main-title {
    font-size: 1.7rem;
  }
  .cookie-list-items li {
    padding-left: 36px;
  }
  .cookie-steps-list li {
    padding-left: 46px;
  }
  .cookie-steps-list li::before {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }
}
.privacy-policy-wrapper {
  background: linear-gradient(135deg, #fafbfc 0%, #f8f9fa 100%);
  min-height: 100vh;
  padding: 60px 0;
}
.privacy-policy-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}
.privacy-header-block {
  background: #fff;
  border-radius: 12px;
  padding: 50px 40px;
  margin-bottom: 40px;
  box-shadow: 0 2px 8px #a7778514;
  border-left: 4px solid #a77785;
}
.privacy-main-title {
  font-size: 2.8rem;
  color: #212529;
  margin: 0 0 20px;
  font-weight: 700;
  line-height: 1.2;
}
.privacy-update-date {
  color: #6c757d;
  font-size: 1rem;
  margin: 0 0 25px;
  display: block;
}
.privacy-intro-text {
  color: #495057;
  font-size: 1.1rem;
  line-height: 1.7;
  margin: 0;
}
.privacy-content-section {
  background: #fff;
  border-radius: 10px;
  padding: 45px 40px;
  margin-bottom: 30px;
  box-shadow: 0 1px 6px #c4c0b21a;
  transition: box-shadow 0.3s ease;
}
.privacy-content-section:hover {
  box-shadow: 0 4px 12px #a777851f;
}
.privacy-section-heading {
  font-size: 1.9rem;
  color: #212529;
  margin: 0 0 25px;
  font-weight: 600;
  position: relative;
  padding-bottom: 12px;
}
.privacy-section-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #a77785 0%, #c4c0b2 100%);
  border-radius: 2px;
}
.privacy-subsection-title {
  font-size: 1.4rem;
  color: #343a40;
  margin: 30px 0 18px;
  font-weight: 600;
}
.privacy-text-paragraph {
  color: #495057;
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 0 0 20px;
}
.privacy-text-paragraph:last-child {
  margin-bottom: 0;
}
.privacy-list-standard {
  margin: 20px 0;
  padding-left: 0;
  list-style: none;
}
.privacy-list-standard li {
  color: #495057;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
}
.privacy-list-standard li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  background: #a77785;
  border-radius: 50%;
}
.privacy-nested-list {
  margin: 12px 0 0;
  padding-left: 0;
  list-style: none;
}
.privacy-nested-list li {
  color: #6c757d;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 10px;
  padding-left: 28px;
  position: relative;
}
.privacy-nested-list li::before {
  content: "—";
  position: absolute;
  left: 8px;
  color: #c4c0b2;
  font-weight: 600;
}
.privacy-important-box {
  background: linear-gradient(135deg, #fafbfc 0%, #f5f6fa 100%);
  border-left: 4px solid #a77785;
  border-radius: 8px;
  padding: 25px 30px;
  margin: 30px 0;
}
.privacy-important-box .privacy-text-paragraph {
  margin-bottom: 12px;
}
.privacy-important-box .privacy-text-paragraph:last-child {
  margin-bottom: 0;
}
.privacy-contact-block {
  background: linear-gradient(135deg, #a77785 0%, #c4c0b2 100%);
  border-radius: 12px;
  padding: 45px 40px;
  margin-top: 40px;
  color: #fff;
  text-align: center;
}
.privacy-contact-title {
  font-size: 1.8rem;
  color: #fff;
  margin: 0 0 20px;
  font-weight: 600;
}
.privacy-contact-text {
  color: #fff;
  font-size: 1.1rem;
  line-height: 1.7;
  margin: 0 0 25px;
  opacity: 0.95;
}
.privacy-contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
.privacy-contact-item {
  color: #fff;
  font-size: 1.05rem;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.privacy-contact-item:hover {
  opacity: 0.8;
}
.privacy-table-wrapper {
  overflow-x: auto;
  margin: 25px 0;
}
.privacy-data-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}
.privacy-data-table thead {
  background: linear-gradient(135deg, #d9d9d7 0%, #c4c0b2 100%);
}
.privacy-data-table th {
  padding: 18px 20px;
  text-align: left;
  color: #212529;
  font-weight: 600;
  font-size: 1.05rem;
  border-bottom: 2px solid #a77785;
}
.privacy-data-table td {
  padding: 16px 20px;
  color: #495057;
  font-size: 1rem;
  line-height: 1.6;
  border-bottom: 1px solid #e9ecef;
}
.privacy-data-table tbody tr:last-child td {
  border-bottom: none;
}
.privacy-data-table tbody tr:hover {
  background: #fafbfc;
}
.privacy-emphasis-text {
  font-weight: 600;
  color: #343a40;
}
@media (max-width: 768px) {
  .privacy-policy-wrapper {
    padding: 40px 0;
  }
  .privacy-header-block {
    padding: 35px 25px;
    margin-bottom: 30px;
  }
  .privacy-main-title {
    font-size: 2rem;
    margin-bottom: 15px;
  }
  .privacy-intro-text {
    font-size: 1rem;
  }
  .privacy-content-section {
    padding: 30px 25px;
    margin-bottom: 20px;
  }
  .privacy-section-heading {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
  .privacy-subsection-title {
    font-size: 1.2rem;
    margin: 25px 0 15px;
  }
  .privacy-text-paragraph {
    font-size: 1rem;
  }
  .privacy-list-standard li {
    font-size: 1rem;
  }
  .privacy-contact-block {
    padding: 35px 25px;
  }
  .privacy-contact-title {
    font-size: 1.5rem;
  }
  .privacy-contact-text {
    font-size: 1rem;
  }
  .privacy-data-table th,
  .privacy-data-table td {
    padding: 12px 15px;
    font-size: 0.95rem;
  }
}
@media (max-width: 480px) {
  .privacy-policy-wrapper {
    padding: 30px 0;
  }
  .privacy-header-block {
    padding: 25px 20px;
  }
  .privacy-main-title {
    font-size: 1.7rem;
  }
  .privacy-content-section {
    padding: 25px 20px;
  }
  .privacy-section-heading {
    font-size: 1.3rem;
  }
  .privacy-important-box {
    padding: 20px;
  }
  .privacy-data-table th,
  .privacy-data-table td {
    padding: 10px 12px;
    font-size: 0.9rem;
  }
}
.success-page-wrapper {
  background: linear-gradient(135deg, #fafbfc 0%, #f8f9fa 100%);
  min-height: 100vh;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
}
.success-hero-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 20px 60px;
  text-align: center;
}
.success-icon-holder {
  width: 120px;
  height: 120px;
  margin: 0 auto 40px;
  background: linear-gradient(135deg, #a77785 0%, #c4c0b2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 40px #a7778533;
  animation: successPulse 2s ease-in-out infinite;
}
@keyframes successPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 10px 40px #a7778533;
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 15px 50px #a777854d;
  }
}
.success-checkmark {
  width: 60px;
  height: 60px;
  border: 4px solid #fff;
  border-radius: 50%;
  position: relative;
}
.success-checkmark::after {
  content: "";
  position: absolute;
  left: 18px;
  top: 8px;
  width: 18px;
  height: 30px;
  border: solid #fff;
  border-width: 0 4px 4px 0;
  transform: rotate(45deg);
}
.success-main-title {
  font-size: 48px;
  font-weight: 700;
  color: #212529;
  margin: 0 0 20px;
  line-height: 1.2;
}
.success-subtitle-text {
  font-size: 20px;
  color: #495057;
  margin: 0 0 50px;
  line-height: 1.6;
}
.success-info-block {
  background: #fff;
  border-radius: 12px;
  padding: 40px;
  margin: 0 0 50px;
  box-shadow: 0 4px 20px #00000014;
  text-align: left;
}
.info-block-title {
  font-size: 24px;
  font-weight: 600;
  color: #212529;
  margin: 0 0 25px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.info-block-title::before {
  content: "";
  width: 4px;
  height: 28px;
  background: linear-gradient(180deg, #a77785 0%, #c4c0b2 100%);
  border-radius: 2px;
}
.info-block-content {
  color: #495057;
  font-size: 17px;
  line-height: 1.7;
  margin: 0 0 30px;
}
.info-block-content p {
  margin: 0 0 16px;
}
.info-block-content p:last-child {
  margin: 0;
}
.timeline-steps-wrapper {
  margin: 40px 0 0;
}
.timeline-single-step {
  display: flex;
  gap: 20px;
  margin: 0 0 30px;
  align-items: flex-start;
}
.timeline-single-step:last-child {
  margin: 0;
}
.step-number-circle {
  min-width: 50px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #a77785 0%, #c4c0b2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  margin-top: 4px;
}
.step-content-text {
  flex: 1;
}
.step-content-text h3 {
  font-size: 18px;
  font-weight: 600;
  color: #212529;
  margin: 0 0 8px;
}
.step-content-text p {
  font-size: 16px;
  color: #495057;
  margin: 0;
  line-height: 1.6;
}
.success-actions-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 0 60px;
}
.success-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: linear-gradient(135deg, #a77785 0%, #c4c0b2 100%);
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px #a777854d;
}
.success-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px #a7778566;
  color: #fff;
}
.success-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: #fff;
  color: #a77785;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  border: 2px solid #a77785;
  transition: all 0.3s ease;
}
.success-btn-secondary:hover {
  background: #a77785;
  color: #fff;
  transform: translateY(-2px);
}
.helpful-resources-section {
  background: #fff;
  border-radius: 12px;
  padding: 40px;
  margin: 0 0 60px;
  box-shadow: 0 4px 20px #00000014;
}
.resources-title-main {
  font-size: 28px;
  font-weight: 700;
  color: #212529;
  margin: 0 0 30px;
  text-align: center;
}
.resources-grid-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.resource-card-item {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 28px;
  border-left: 4px solid #a77785;
  transition: all 0.3s ease;
}
.resource-card-item:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 15px #a7778526;
}
.resource-card-title {
  font-size: 19px;
  font-weight: 600;
  color: #212529;
  margin: 0 0 12px;
}
.resource-card-description {
  font-size: 16px;
  color: #495057;
  line-height: 1.6;
  margin: 0;
}
.contact-reminder-block {
  background: linear-gradient(135deg, #f8f9fa 0%, #fafbfc 100%);
  border-radius: 12px;
  padding: 40px;
  text-align: center;
  border: 2px solid #d9d9d7;
}
.reminder-title {
  font-size: 22px;
  font-weight: 600;
  color: #212529;
  margin: 0 0 20px;
}
.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  margin: 0;
}
.contact-detail-item {
  font-size: 16px;
  color: #495057;
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-detail-item::before {
  content: "●";
  color: #a77785;
  font-size: 12px;
}
@media (max-width: 768px) {
  .success-hero-container {
    padding: 60px 16px 40px;
  }
  .success-main-title {
    font-size: 36px;
  }
  .success-subtitle-text {
    font-size: 18px;
    margin: 0 0 40px;
  }
  .success-info-block {
    padding: 30px 20px;
  }
  .info-block-title {
    font-size: 21px;
  }
  .info-block-content {
    font-size: 16px;
  }
  .success-actions-row {
    flex-direction: column;
    align-items: stretch;
  }
  .success-btn-primary,
  .success-btn-secondary {
    justify-content: center;
    width: 100%;
  }
  .helpful-resources-section {
    padding: 30px 20px;
  }
  .resources-grid-layout {
    grid-template-columns: 1fr;
  }
  .contact-reminder-block {
    padding: 30px 20px;
  }
  .step-number-circle {
    min-width: 44px;
    width: 44px;
    height: 44px;
    font-size: 18px;
  }
  .step-content-text h3 {
    font-size: 17px;
  }
  .step-content-text p {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .success-icon-holder {
    width: 100px;
    height: 100px;
  }
  .success-checkmark {
    width: 50px;
    height: 50px;
    border-width: 3px;
  }
  .success-checkmark::after {
    left: 15px;
    top: 6px;
    width: 15px;
    height: 25px;
    border-width: 0 3px 3px 0;
  }
  .success-main-title {
    font-size: 30px;
  }
  .timeline-single-step {
    gap: 15px;
  }
}
