* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

[id] {
  scroll-margin-top: 82px;
}

body {
  background: #ffffff;
  color: #000;
  overflow-x: hidden;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 82px;
  z-index: 999;
  background: #fcf8f2;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);

  border-bottom: 1px solid #ececec;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.logo img {
  height: 74px;
  display: block;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 34px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  justify-content: center;
  margin-bottom: 0;
}

.nav-links a {
  text-decoration: none;
  color: #000;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.vector-icon {
  width: 13px;
  height: 8px;
  display: inline-block;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='8' viewBox='0 0 13 8' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M6.69506 6.96028C6.47539 7.17996 6.11929 7.17996 5.89961 6.96028L0.164751 1.22541C-0.0549169 1.00573 -0.0549169 0.649631 0.164751 0.429956L0.429921 0.164756C0.649588 -0.0549187 1.00574 -0.0549187 1.22542 0.164756L6.29734 5.23671L11.3693 0.164756C11.589 -0.0549187 11.9451 -0.0549187 12.1647 0.164756L12.4299 0.429956C12.6496 0.649631 12.6496 1.00573 12.4299 1.22541L6.69506 6.96028Z' fill='black'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.btn-black,
.btn-outline {
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
}

.btn-black {
  background: #3d352f;
  color: #fff;
}

.btn-outline {
  border: 1px solid #000;
  color: #000;
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid #eee;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  min-width: 170px;
  list-style: none;
  margin-top: 14px;
  display: none;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
}

.dropdown-menu a {
  display: block;
  padding: 8px 16px;
}

.hamburger {
  display: none;
  font-size: 30px;
  cursor: pointer;
}

.sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: #ffffff;
  z-index: 1000;
  transition: 0.45s ease;
  padding: 28px 7%;
  display: flex;
  flex-direction: column;
}

.sidebar.active {
  right: 0;
}

.sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 70px;
}

.mobile-top-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.sidebar-links {
  list-style: none;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex: 1;
}

.sidebar-links li {
  width: 100%;
  display: flex;
  justify-content: center;
}

.sidebar-links a {
  text-decoration: none;
  color: #000;
  font-size: 24px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.mobile-dropdown {
  flex-direction: column;
}

.mobile-dropdown-content {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.mobile-dropdown.open .mobile-dropdown-content {
  max-height: 220px;
  margin-top: 18px;
}

.hero-section {
  padding: 150px 0 90px;
  background-color: #f5f3ed;
}

.hero-container {
  margin: auto;
  display: flex;
  align-items: center;
  gap: 80px;
}

.hero-text {
  flex: 1;
  max-width: 620px;
}

.hero-text h1 {
  font-size: 58px;
  line-height: 1.08;
  margin-bottom: 24px;
}

.hero-text p {
  font-size: 18px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 36px;
}

.hero-btns {
  display: flex;
  gap: 16px;
}

.hero-grid {
  flex: 1;
  display: flex;
  gap: 22px;
}

.grid-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.grid-col.right {
  padding-top: 70px;
}

.grid-item {
  overflow: hidden;
  background: #eee;
}

.grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.square {
  aspect-ratio: 1/1;
}

.half-top {
  aspect-ratio: 2/1;
}

.half-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.half-bottom {
  aspect-ratio: 2/1;
}

.half-bottom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
}

.grid-item:hover img {
  transform: scale(1.04);
}

@media (max-width: 992px) {
  .nav-links,
  .nav-btn-wrapper {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .hero-section {
    padding: 120px 0 60px;
  }

  .hero-container {
    flex-direction: column;
    text-align: center;
    gap: 50px;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-text h1 {
    font-size: 38px;
  }

  .hero-text p {
    font-size: 16px;
  }

  .hero-btns {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-grid {
    width: 100%;
  }

  .grid-col.right {
    padding-top: 0px;
  }
}

@media (max-width: 600px) {
  .hero-section {
    padding: 80px 0;
  }

  .hero-text h1 {
    font-size: 28px;
    line-height: 1.15;
  }

  .hero-text p {
    font-size: 15px;
    margin-bottom: 28px;
  }

  .hero-btns {
    gap: 12px;
  }

  .hero-grid {
    gap: 12px;
  }

  .grid-col {
    gap: 12px;
  }

  .grid-col.right {
    padding-top: 0px;
  }

  .sidebar-links a {
    font-size: 22px;
  }
}
.fmz-brand-section {
  position: relative;
  width: 100%;
  min-height: 90vh;
  background-color: #f5f3ed;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 60px 0;
}

.brand-bg-rays {
  position: absolute;
  top: 45%;

  left: 50%;
  width: 300vw;

  height: 300vw;
  transform: translate(-50%, -50%);

  background: repeating-conic-gradient(
    from 0deg,
    rgba(163, 106, 83, 0.12) 0deg 0.15deg,
    transparent 0.15deg 6deg
  );
  z-index: 1;
  pointer-events: none;
}

.brand-container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.brand-logo-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 60px;
  height: 80px;
}

.brand-logo-text {
  font-family: "Georgia", serif;
  font-size: 56px;
  color: #a36a53;

  letter-spacing: 5px;
  font-weight: 400;
  line-height: 1;
}

.brand-vertical-line {
  width: 1.5px;
  height: 100%;
  background-color: #5c544e;
  opacity: 0.9;
}

.brand-sunburst {
  position: relative;
  width: 60px;
  height: 100%;
}

.brand-sunburst span {
  position: absolute;
  left: 0;
  top: 50%;
  width: 48px;
  height: 1.5px;
  background-color: #5c544e;
  transform-origin: left center;
  opacity: 0.9;
}

.brand-sunburst span:nth-child(1) {
  transform: rotate(-85deg);
}

.brand-sunburst span:nth-child(2) {
  transform: rotate(-70deg);
}

.brand-sunburst span:nth-child(3) {
  transform: rotate(-55deg);
}

.brand-sunburst span:nth-child(4) {
  transform: rotate(-40deg);
}

.brand-sunburst span:nth-child(5) {
  transform: rotate(-25deg);
}

.brand-sunburst span:nth-child(6) {
  transform: rotate(-10deg);
}

.brand-sunburst span:nth-child(7) {
  transform: rotate(5deg);
}

.brand-sunburst span:nth-child(8) {
  transform: rotate(20deg);
}

.brand-sunburst span:nth-child(9) {
  transform: rotate(35deg);
}

.brand-sunburst span:nth-child(10) {
  transform: rotate(50deg);
}

.brand-sunburst span:nth-child(11) {
  transform: rotate(65deg);
}

.brand-sunburst span:nth-child(12) {
  transform: rotate(80deg);
}

.brand-title {
  font-family: "Georgia", serif;
  font-size: clamp(38px, 6vw, 72px);
  color: #3d352f;
  line-height: 1.1;
  font-weight: 500;
  margin-bottom: 30px;
  letter-spacing: -1px;
}

.brand-description {
  font-size: clamp(16px, 2vw, 22px);
  color: #6b635b;
  max-width: 800px;
  margin: 0 auto;
  font-weight: 400;
  letter-spacing: 0.3px;
}

@media (max-width: 768px) {
  .fmz-brand-section {
    padding: 40px 0;
    min-height: 60vh;
  }

  .brand-logo-text {
    font-size: 42px;
  }

  .brand-sunburst span {
    width: 38px;
  }

  .brand-bg-rays {
    width: 400vw;
    height: 400vw;
  }
}
.fmz-engine-section {
  width: 100%;
  background-color: #f5f3ed;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
  background: repeating-conic-gradient(
    from 0deg,
    rgba(163, 106, 83, 0.12) 0deg 0.15deg,
    transparent 0.15deg 6deg
  );
}

.engine-main-title {
  font-family: "Georgia", serif;
  font-size: clamp(36px, 6vw, 72px);
  line-height: 1;
  color: #3d352f;
  font-weight: 400;
  margin-bottom: 0;
  letter-spacing: -1.5px;
  max-width: 800px;
  position: relative;
}

.engine-main-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: #a36a53;
  margin: 32px auto 0;
}

.engine-box {
  position: relative;
  padding: 40px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(163, 106, 83, 0.12);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.engine-box:hover {
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 12px 40px rgba(163, 106, 83, 0.08);
  transform: translateY(-4px);
}

.engine-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, #a36a53, transparent);
  border-radius: 20px 20px 0 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.engine-box:hover::before {
  opacity: 1;
}

.engine-label {
  font-family: "Georgia", serif;
  font-size: 22px;
  font-weight: 500;
  color: #3d352f;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.engine-text {
  font-family: "Georgia", serif;
  font-size: 15px;
  line-height: 1.7;
  color: #5c544e;
  font-weight: 300;
}

.engine-deco-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(163, 106, 83, 0.08);
  pointer-events: none;
}

.engine-deco-circle.one {
  width: 400px;
  height: 400px;
  top: -100px;
  right: -80px;
}

.engine-deco-circle.two {
  width: 250px;
  height: 250px;
  bottom: -60px;
  left: -40px;
}

.engine-deco-circle.three {
  width: 150px;
  height: 150px;
  top: 50%;
  right: 20%;
  border-style: dashed;
  opacity: 0.5;
}

.engine-deco-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(163, 106, 83, 0.15) 30%,
    rgba(163, 106, 83, 0.15) 70%,
    transparent
  );
  pointer-events: none;
}

.engine-deco-line.top {
  top: 35%;
  left: 0;
  right: 0;
}

.engine-deco-line.bottom {
  bottom: 20%;
  left: 10%;
  right: 10%;
}

@media (max-width: 768px) {
  .fmz-engine-section {
    padding: 40px 0;
  }

  .engine-main-title {
    font-size: 36px;
    margin-bottom: 50px;
  }

  .engine-main-title::after {
    width: 50px;
    margin-top: 24px;
  }

  .engine-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .engine-box {
    padding: 30px 25px;
  }

  .engine-label {
    font-size: 18px;
    letter-spacing: 1.5px;
  }

  .engine-text {
    font-size: 14px;
  }

  .engine-deco-circle.one {
    width: 200px;
    height: 200px;
    top: -50px;
    right: -40px;
  }

  .engine-deco-circle.two {
    width: 150px;
    height: 150px;
  }

  .engine-deco-circle.three {
    display: none;
  }
}
.fmz-capabilities-section {
  background-color: #f5f3ed;
  padding: 60px 0;
  color: #3d352f;
}

.logo-sub {
  font-size: 10px;
  letter-spacing: 2px;
  color: #a36a53;
  font-weight: 700;
}

.cap-main-title {
  font-family: "Georgia", serif;
  font-size: 32px;
  color: #a36a53;
  margin-bottom: 10px;
}

.cap-sub-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}

.cap-desc {
  font-size: 16px;
  line-height: 1.5;
  color: #444;
}

.cap-hr {
  border: 0;
  height: 1.5px;
  background: #3d352f;
  margin: 40px 0;
}

.cap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.cap-label {
  font-family: "Georgia", serif;
  font-size: 24px;
  color: #a36a53;
  margin-bottom: 20px;
}

.strategy-p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 40px;
}

.pipeline-area {
  margin-top: 20px;
}

.pipeline-label {
  font-weight: 700;
  margin-bottom: 30px;
  font-size: 18px;
  text-align: center;
}

.pipeline-flow {
  display: flex;
  align-items: stretch;
  gap: 0;
  position: relative;
}

.pipeline-step {
  flex: 1;
  padding: 32px 24px;
  position: relative;
  text-align: center;
  transition: all 0.3s ease;
}

.pipeline-step:first-child {
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(163, 106, 83, 0.15);
  border-radius: 16px 0 0 16px;
}

.pipeline-step:last-child {
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(163, 106, 83, 0.15);
  border-radius: 0 16px 16px 0;
  border-left: none;
}

.pipeline-step:nth-child(2) {
  background: linear-gradient(135deg, #a36a53, #3d352f);
  border: 1px solid rgba(163, 106, 83, 0.3);
  border-left: none;
  border-right: none;
  z-index: 2;
}

.pipeline-step:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(163, 106, 83, 0.12);
}

.pipeline-step strong {
  display: block;
  font-size: 16px;
  margin-bottom: 8px;
  font-family: "Georgia", serif;
  letter-spacing: 0.5px;
}

.pipeline-step span {
  font-size: 13px;
  line-height: 1.5;
  color: #666;
}

.pipeline-step:nth-child(2) strong,
.pipeline-step:nth-child(2) span {
  color: #fff;
}

.pipeline-arrow {
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 12px solid #a36a53;
  z-index: 3;
}

.pipeline-step:nth-child(2) .pipeline-arrow {
  border-left-color: #3d352f;
}

.cap-right {
  border-left: 1px solid #d1cdc0;
  padding-left: 50px;
}

.capability-list {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.cap-item {
  display: flex;
  gap: 20px;
  align-items: center;
}

.cap-ico {
  font-size: 24px;
}

.cap-item h5 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.cap-item p {
  font-size: 14px;
  color: #555;
  line-height: 1.4;
}

@media (max-width: 992px) {
  .cap-right {
    border-left: none;
    padding-left: 0;
  }

  .pipeline-flow {
    flex-direction: column;
    gap: 0;
  }

  .pipeline-step:first-child {
    border-radius: 16px 16px 0 0;
    border-bottom: none;
  }

  .pipeline-step:last-child {
    border-radius: 0 0 16px 16px;
    border-left: 1px solid rgba(163, 106, 83, 0.15);
    border-top: none;
  }

  .pipeline-step:nth-child(2) {
    border-left: 1px solid rgba(163, 106, 83, 0.3);
    border-right: 1px solid rgba(163, 106, 83, 0.3);
  }

  .pipeline-arrow {
    display: none;
  }
}
.phil-blueprint-section {
  background-color: #3d352f;
  width: 100%;
  padding: 60px 0;
  display: flex;
  position: relative;
  overflow: hidden;
}

.blueprint-container {
  width: 100%;
  position: relative;
  z-index: 2;
}

.blueprint-header {
  font-family: "Georgia", serif;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
  margin-bottom: 60px;
  color: #f5f3ed;
  font-weight: 400;
}

.blueprint-header span {
  color: #c4876e;
}

.ring-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.ring-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 420px;
  margin: 0 auto;
}

.ring-outer {
  position: absolute;
  inset: 0;
  border: 1.5px solid rgba(195, 135, 110, 0.25);
  border-radius: 50%;
  transition: all 0.4s ease;
}

.ring-outer::after {
  content: "F";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Georgia", serif;
  font-size: 14px;
  color: #c4876e;
  letter-spacing: 2px;
  background: #3d352f;
  padding: 2px 12px;
}

.ring-middle {
  position: absolute;
  inset: 18%;
  border: 2px solid rgba(195, 135, 110, 0.4);
  border-radius: 50%;
  transition: all 0.4s ease;
}

.ring-middle::after {
  content: "M";
  position: absolute;
  top: -12px;
  right: 20%;
  font-family: "Georgia", serif;
  font-size: 14px;
  color: #c4876e;
  letter-spacing: 2px;
  background: #3d352f;
  padding: 2px 12px;
}

.ring-inner {
  position: absolute;
  inset: 38%;
  background: radial-gradient(
    circle,
    rgba(163, 106, 83, 0.3),
    rgba(163, 106, 83, 0.1)
  );
  border: 2px solid #a36a53;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.ring-inner-text {
  text-align: center;
  color: #f5f3ed;
}

.ring-inner-text .ring-letter {
  font-family: "Georgia", serif;
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 4px;
  display: block;
  margin-bottom: 4px;
}

.ring-inner-text .ring-word {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.7;
}

.ring-visual:hover .ring-outer {
  border-color: rgba(195, 135, 110, 0.5);
}

.ring-visual:hover .ring-middle {
  border-color: rgba(195, 135, 110, 0.7);
}

.ring-visual:hover .ring-inner {
  background: radial-gradient(
    circle,
    rgba(163, 106, 83, 0.5),
    rgba(163, 106, 83, 0.2)
  );
}

.ring-descriptions {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.ring-desc {
  padding-left: 24px;
  border-left: 2px solid rgba(195, 135, 110, 0.2);
  transition: all 0.3s ease;
}

.ring-desc:hover {
  border-left-color: #a36a53;
  padding-left: 32px;
}

.ring-desc-letter {
  font-family: "Georgia", serif;
  font-size: 13px;
  font-weight: 500;
  color: #c4876e;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.ring-desc h3 {
  font-family: "Georgia", serif;
  font-size: 20px;
  font-weight: 400;
  color: #f5f3ed;
  margin-bottom: 10px;
  line-height: 1.2;
}

.ring-desc p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(245, 243, 237, 0.6);
  font-weight: 300;
}

.ring-desc:nth-child(2) {
  border-left-color: #a36a53;
}

.ring-desc:nth-child(2) h3 {
  color: #c4876e;
}

.phil-blueprint-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(195, 135, 110, 0.1) 30%,
    rgba(195, 135, 110, 0.1) 70%,
    transparent
  );
  pointer-events: none;
}

.phil-blueprint-section::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(195, 135, 110, 0.08) 30%,
    rgba(195, 135, 110, 0.08) 70%,
    transparent
  );
  pointer-events: none;
}

@media (max-width: 992px) {
  .phil-blueprint-section {
    padding: 40px 0;
  }

  .ring-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ring-visual {
    max-width: 280px;
  }

  .ring-descriptions {
    gap: 28px;
  }

  .ring-desc h3 {
    font-size: 18px;
  }

  .ring-desc p {
    font-size: 13px;
  }
}
section.strategic-horizon {
  background: linear-gradient(135deg, #f5f3ed 0%, #faf8f4 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

section.strategic-horizon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    #a36a53 20%,
    #a36a53 80%,
    transparent
  );
}

.horizon-container {
  position: relative;
  z-index: 1;
}

section.strategic-horizon .title {
  font-family: "Georgia", serif;
  font-size: 52px;
  color: #3d352f;
  text-align: center;
  margin-bottom: 80px;
  line-height: 1.1;
  font-weight: 400;
}

.horizon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  align-items: start;
}

.horizon-item {
  position: relative;
  padding: 60px 0 0 0;
  background: transparent;
}

.horizon-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 3px;
  background: #a36a53;
}

section.strategic-horizon h2 {
  font-family: "Georgia", serif;
  font-size: 28px;
  color: #3d352f;
  margin-bottom: 24px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 3px;
}

section.strategic-horizon p {
  font-size: 16px;
  line-height: 1.8;
  color: #3d352f;
  margin: 0;
}

section.strategic-horizon .highlight {
  color: #a36a53;
  font-weight: 600;
  position: relative;
}

section.strategic-horizon .highlight::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(163, 106, 83, 0.3);
}

.horizon-decoration {
  position: absolute;
  width: 200px;
  height: 200px;
  border: 1px solid rgba(163, 106, 83, 0.1);
  border-radius: 50%;
  top: -100px;
  right: -100px;
}

.horizon-decoration::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  border: 1px solid rgba(163, 106, 83, 0.15);
  border-radius: 50%;
}

@media (max-width: 992px) {
  section.strategic-horizon .title {
    font-size: 42px;
    margin-bottom: 60px;
  }

  .horizon-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .horizon-item {
    padding: 40px 0 0 0;
  }
}
section.pillars-section {
  background: linear-gradient(135deg, #faf8f4 0%, #f5f3ed 100%);
  padding: 60px 0;
  position: relative;
}

section.pillars-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    #a36a53 20%,
    #a36a53 80%,
    transparent
  );
}

.pillars-container {
  margin: 0 auto;
}

section.pillars-section .title {
  font-family: "Georgia", serif;
  font-size: 48px;
  color: #3d352f;
  text-align: center;
  margin-bottom: 80px;
  line-height: 1.1;
  font-weight: 400;
}

section.pillars-section .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

section.pillars-section .column {
  position: relative;
  padding: 50px 40px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(163, 106, 83, 0.08);
  border: 1px solid rgba(163, 106, 83, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

section.pillars-section .column:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(163, 106, 83, 0.12);
}

section.pillars-section .column::before {
  content: "";
  position: absolute;
  top: 0;
  left: 40px;
  right: 40px;
  height: 3px;
  background: #a36a53;
  border-radius: 2px;
}

section.pillars-section .icon-placeholder {
  font-size: 32px;
  margin-bottom: 30px;
  color: #a36a53;
  opacity: 0.8;
}

section.pillars-section h3 {
  font-family: "Georgia", serif;
  font-size: 24px;
  color: #3d352f;
  margin-bottom: 40px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
}

section.pillars-section .item {
  margin-bottom: 30px;
  text-align: left;
}

section.pillars-section .item:last-child {
  margin-bottom: 0;
}

section.pillars-section .item strong {
  display: block;
  color: #a36a53;
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 600;
}

section.pillars-section .item p {
  font-size: 15px;
  line-height: 1.7;
  color: #5c544e;
  margin: 0;
}

@media (max-width: 992px) {
  section.pillars-section .grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  section.pillars-section .title {
    font-size: 42px;
    margin-bottom: 60px;
  }

  section.pillars-section .column {
    padding: 40px 30px;
  }
}
section.contrast-section {
  background: linear-gradient(135deg, #faf8f4 0%, #f5f3ed 100%);
  padding: 60px 0;
  position: relative;
}

section.contrast-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    #a36a53 20%,
    #a36a53 80%,
    transparent
  );
}

section.contrast-section h2 {
  font-family: "Georgia", serif;
  font-size: 48px;
  color: #3d352f;
  line-height: 1.1;
  font-weight: 400;
}

.comparison-item {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(163, 106, 83, 0.1) !important;
  box-shadow: 0 8px 32px rgba(163, 106, 83, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.comparison-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(163, 106, 83, 0.14) !important;
}

.comparison-header {
  background: rgba(163, 106, 83, 0.05);
  border-bottom: 1px solid rgba(163, 106, 83, 0.1);
}

.comparison-title {
  font-family: "Georgia", serif;
  font-size: 22px;
  color: #3d352f;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.comparison-side {
  position: relative;
  transition: background 0.3s ease;
}

.comparison-side::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}

.traditional-side {
  background: rgba(245, 245, 245, 0.5);
}

.traditional-side::before {
  background: #5c544e;
}

.fmz-side {
  background: rgba(163, 106, 83, 0.08);
}

.fmz-side::before {
  background: #a36a53;
}

.side-badge {
  font-family: "Georgia", serif;
  font-size: 13px;
  letter-spacing: 1px;
  padding: 6px 16px;
}

.fmz-badge {
  background-color: #a36a53 !important;
  color: #fff;
}

.side-content {
  font-size: 15px;
  line-height: 1.7;
  color: #5c544e;
}

.side-content strong {
  color: #a36a53;
  font-weight: 600;
}

@media (max-width: 767.98px) {
  section.contrast-section {
    padding: 40px 0;
  }

  section.contrast-section h2 {
    font-size: 32px;
  }

  .comparison-side {
    padding: 1.25rem !important;
  }

  .comparison-title {
    font-size: 18px;
  }
}
section.service-pillars-section {
  background: linear-gradient(135deg, #faf8f4 0%, #f5f3ed 100%);
  padding: 60px 0;
  position: relative;
}

section.service-pillars-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    #a36a53 20%,
    #a36a53 80%,
    transparent
  );
}

section.service-pillars-section .main-title {
  font-family: "Georgia", serif;
  font-size: 48px;
  color: #3d352f;
  line-height: 1.1;
  font-weight: 400;
}

.pillar-card {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(163, 106, 83, 0.1) !important;
  box-shadow: 0 12px 40px rgba(163, 106, 83, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  position: relative;
}

.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(163, 106, 83, 0.14) !important;
}

.pillar-card-accent {
  height: 3px;
  background: linear-gradient(to right, #a36a53, #3d352f);
  border-radius: 2px;
}

.pillar-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(163, 106, 83, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pillar-icon svg {
  width: 28px;
  height: 28px;
}

.pillar-heading {
  font-family: "Georgia", serif;
  font-size: 24px;
  color: #3d352f;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.pillar-card .accordion-item {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(163, 106, 83, 0.08);
}

.pillar-card .accordion-item:last-child {
  border-bottom: none;
}

.pillar-card .accordion-button {
  background: transparent;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #3d352f;
  padding: 16px;
  box-shadow: none !important;
  letter-spacing: 0.2px;
}

.pillar-card .accordion-button:not(.collapsed) {
  color: #a36a53;
  background: rgba(163, 106, 83, 0.04);
}

.pillar-card .accordion-button::after {
  background-size: 14px;
  width: 14px;
  height: 14px;
}

.pillar-card .accordion-body {
  padding: 16px;
  font-size: 14px;
  line-height: 1.7;
  color: #5c544e;
}

@media (max-width: 991.98px) {
  section.service-pillars-section {
    padding: 40px 0;
  }

  section.service-pillars-section .main-title {
    font-size: 36px;
  }

  .pillar-heading {
    font-size: 20px;
  }
}

@media (max-width: 575.98px) {
  section.service-pillars-section .main-title {
    font-size: 28px;
  }
}
section.optimization-section {
  background: linear-gradient(135deg, #f5f3ed 0%, #faf8f4 100%);
  padding: 60px 0;
  position: relative;
}

section.optimization-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    #a36a53 20%,
    #a36a53 80%,
    transparent
  );
}

section.optimization-section .opt-title {
  font-family: "Georgia", serif;
  font-size: 48px;
  color: #3d352f;
  line-height: 1.1;
  font-weight: 400;
}

.opt-panel {
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(163, 106, 83, 0.1);
  box-shadow: 0 12px 48px rgba(163, 106, 83, 0.08);
}

.opt-nav-wrap {
  padding: 28px 28px 20px;
  border-bottom: 1px solid rgba(163, 106, 83, 0.08);
}

.opt-nav {
  gap: 8px;
}

.opt-tab {
  border-radius: 12px !important;
  padding: 14px 28px !important;
  font-family: "Georgia", serif;
  font-size: 16px;
  font-weight: 400;
  color: #5c544e !important;
  background: transparent !important;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.opt-tab:hover {
  color: #3d352f !important;
  background: rgba(163, 106, 83, 0.05) !important;
}

.opt-tab.active {
  color: #fff !important;
  background: linear-gradient(135deg, #a36a53, #3d352f) !important;
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(163, 106, 83, 0.25);
}

.opt-tab-icon svg {
  width: 20px;
  height: 20px;
}

.opt-tab-label {
  line-height: 1;
}

.opt-visual-side {
  background: linear-gradient(160deg, #3d352f 0%, #5c544e 100%);
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.opt-visual-side-alt {
  background: linear-gradient(160deg, #a36a53 0%, #3d352f 100%);
}

.opt-visual-inner {
  padding: 48px 40px;
  position: relative;
  z-index: 2;
}

.opt-visual-icon svg {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
}

.opt-visual-title {
  font-family: "Georgia", serif;
  font-size: 28px;
  color: #f5f3ed;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.opt-visual-desc {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(245, 243, 237, 0.7);
  max-width: 320px;
}

.opt-items-area {
  background: rgba(255, 255, 255, 0.3);
}

.opt-mini-card {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(163, 106, 83, 0.08);
  border-radius: 14px;
  padding: 24px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.opt-mini-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(163, 106, 83, 0.1);
  border-color: rgba(163, 106, 83, 0.15);
}

.opt-mini-title {
  font-family: "Georgia", serif;
  font-size: 17px;
  font-weight: 500;
  color: #3d352f;
  margin-bottom: 8px;
}

.opt-mini-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #5c544e;
  margin-bottom: 0;
}

@media (max-width: 991.98px) {
  section.optimization-section {
    padding: 40px 0;
  }

  section.optimization-section .opt-title {
    font-size: 36px;
  }

  .opt-visual-side {
    min-height: 280px;
  }

  .opt-visual-inner {
    padding: 36px 28px;
  }

  .opt-visual-title {
    font-size: 24px;
  }
}

@media (max-width: 767.98px) {
  .opt-nav {
    flex-direction: column;
  }

  .opt-tab {
    justify-content: center;
  }

  .opt-visual-side {
    min-height: 220px;
  }

  .opt-visual-title {
    font-size: 22px;
  }

  .opt-visual-desc {
    font-size: 14px;
  }

  .opt-mini-card {
    padding: 20px;
  }
}

@media (max-width: 575.98px) {
  section.optimization-section .opt-title {
    font-size: 28px;
  }
}
section.spectrum-section {
  background: linear-gradient(135deg, #faf8f4 0%, #f5f3ed 100%);
  padding: 60px 0;
  position: relative;
}

section.spectrum-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    #a36a53 20%,
    #a36a53 80%,
    transparent
  );
}

section.spectrum-section .spectrum-title {
  font-family: "Georgia", serif;
  font-size: 42px;
  color: #3d352f;
  line-height: 1.1;
  font-weight: 400;
}

.spectrum-card {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(163, 106, 83, 0.1) !important;
  box-shadow: 0 4px 20px rgba(163, 106, 83, 0.06);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.spectrum-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(163, 106, 83, 0.12) !important;
}

.spectrum-card-middle {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(163, 106, 83, 0.18) !important;
  box-shadow: 0 8px 32px rgba(163, 106, 83, 0.1);
}

.spectrum-side-label {
  width: 130px;
  background: #a36a53;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.spectrum-side-label-alt {
  background: linear-gradient(180deg, #a36a53, #3d352f);
}

.spectrum-side-label-dark {
  background: #3d352f;
}

.spectrum-label-text {
  font-family: "Georgia", serif;
  font-size: 15px;
  color: #fff;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 400;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.spectrum-subtitle {
  font-family: "Georgia", serif;
  font-size: 24px;
  color: #3d352f;
  margin-bottom: 10px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.spectrum-subtitle-alt {
  color: #a36a53;
}

.spectrum-desc {
  font-size: 16px;
  line-height: 1.7;
  color: #5c544e;
  margin-bottom: 20px;
  font-style: italic;
  font-weight: 300;
}

.spectrum-item {
  font-size: 15px;
  line-height: 1.6;
  color: #5c544e;
  font-weight: 300;
  padding-left: 20px !important;
  position: relative;
  background: transparent !important;
}

.spectrum-item::before {
  content: "—";
  position: absolute;
  left: 0;
  top: 8px;
  color: #a36a53;
  font-weight: 400;
}

@media (max-width: 991.98px) {
  section.spectrum-section {
    padding: 40px 0;
  }

  section.spectrum-section .spectrum-title {
    font-size: 36px;
  }

  .spectrum-side-label {
    width: 90px;
  }

  .spectrum-label-text {
    font-size: 13px;
    letter-spacing: 2px;
  }

  .spectrum-subtitle {
    font-size: 20px;
    letter-spacing: 1.5px;
  }
}

@media (max-width: 575.98px) {
  section.spectrum-section .spectrum-title {
    font-size: 28px;
  }

  .spectrum-side-label {
    width: 60px;
  }

  .spectrum-label-text {
    font-size: 11px;
    letter-spacing: 1.5px;
  }

  .spectrum-subtitle {
    font-size: 18px;
  }

  .spectrum-desc {
    font-size: 14px;
  }
}
section.security-section {
  background: linear-gradient(135deg, #faf8f4 0%, #f5f3ed 100%);
  padding: 60px 0;
  position: relative;
}

section.security-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    #a36a53 20%,
    #a36a53 80%,
    transparent
  );
}

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

section.security-section .security-title {
  font-family: "Georgia", serif;
  font-size: 48px;
  color: #3d352f;
  margin-bottom: 20px;
  line-height: 1.1;
  font-weight: 400;
}

section.security-section .security-subtitle {
  font-family: "Georgia", serif;
  font-size: 18px;
  color: #5c544e;
  font-style: italic;
}

section.security-section .security-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.security-card {
  position: relative;
}

section.security-section .security-card {
  background: rgba(255, 255, 255, 0.6);
  padding: 50px 40px;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(163, 106, 83, 0.08);
  border: 1px solid rgba(163, 106, 83, 0.1);
  text-align: center;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

section.security-section .security-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #a36a53;
}

section.security-section .security-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(163, 106, 83, 0.15);
}

section.security-section .security-icon svg {
  width: 48px;
  height: 48px;
  margin-bottom: 30px;
}

section.security-section .security-card h3 {
  font-family: "Georgia", serif;
  font-size: 22px;
  margin-bottom: 20px;
  color: #3d352f;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
}

section.security-section .security-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #5c544e;
  margin-bottom: 0;
}

section.security-section .security-highlight {
  background: linear-gradient(135deg, #a36a53 0%, #3d352f 100%);
  color: white;
  padding: 20px 25px;
  margin-top: 25px;
  border-radius: 8px;
  font-size: 15px;
  line-height: 1.6;
  font-family: "Georgia", serif;
  font-style: italic;
  box-shadow: 0 4px 16px rgba(163, 106, 83, 0.2);
}

@media (max-width: 992px) {
  section.security-section {
    padding: 40px 0;
  }

  section.security-section .security-title {
    font-size: 42px;
    margin-bottom: 15px;
  }

  section.security-section .security-subtitle {
    font-size: 16px;
  }

  section.security-section .security-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  section.security-section .security-card {
    padding: 40px 30px;
  }

  section.security-section .security-icon svg {
    width: 40px;
    height: 40px;
    margin-bottom: 25px;
  }

  section.security-section .security-card h3 {
    font-size: 20px;
    letter-spacing: 1px;
  }
}
.alt-policy-section {
  background: linear-gradient(135deg, #faf8f4 0%, #f5f3ed 100%);
  padding: 60px 0;
  position: relative;
  border-top: 1px solid #ddd;
}

.alt-container {
}

.alt-title {
  font-family: "Georgia", serif;
  color: #3d352f;
  font-weight: 400;
}

.alt-subtitle {
  font-family: "Georgia", serif;
  color: #5c544e;
}

.alt-card {
  background-color: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
  position: relative;
}

.alt-card:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 30px rgba(163, 106, 83, 0.1) !important;
}

.alt-card-header {
  letter-spacing: 1px;
  color: #3d352f;
}

.alt-card-desc {
  color: #5c544e;
  font-weight: 300;
}

.alt-card-special {
  background: linear-gradient(135deg, #3d352f, #a36a53);
  color: #fff;
}

.alt-card-special .alt-card-header {
  color: #faf8f4 !important;
}

.alt-card-special .alt-card-desc {
  color: rgba(255, 255, 255, 0.9) !important;
}

.alt-card-special::before {
  color: #faf8f4;
}

.alt-card-special .alt-vurgu-icon {
  font-size: 2rem;
  color: #faf8f4;
  opacity: 0.8;
  margin-top: 20px;
}

@media (max-width: 992px) {
  .alt-title {
    font-size: 2.2rem;
  }
}
footer.footer-section {
  padding: 60px 0;
  font-family: "Inter", sans-serif;
  color: #3d352f;
  text-align: center;
}

footer.footer-section .footer-logo {
  margin-bottom: 20px;
}

footer.footer-section .footer-logo img {
  aspect-ratio: 1 / 1;
  object-fit: contain;
  width: 120px;
  height: auto;
}

footer.footer-section .footer-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
}

footer.footer-section .footer-nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

footer.footer-section .footer-divider {
  border: none;
  border-top: 1px solid #ddd;
  margin: 20px 0;
}

footer.footer-section .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: #666;
}

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

footer.footer-section .footer-legal a {
  text-decoration: none;
  color: #333;
}

footer.footer-section .footer-credit {
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  order: 2;
}

footer.footer-section .footer-copy {
  order: 1;
}

footer.footer-section .footer-legal {
  order: 3;
}

footer.footer-section .footer-credit a {
  text-decoration: none;
  color: inherit;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

footer.footer-section .footer-credit img {
  height: 20px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
}

@media (max-width: 768px) {
  footer.footer-section .footer-nav {
    flex-direction: column;
    gap: 15px;
  }

  footer.footer-section .footer-bottom {
    flex-direction: column;
    gap: 15px;
  }

  footer.footer-section .footer-legal {
    order: 1;
  }

  footer.footer-section .footer-credit {
    order: 2;
  }

  footer.footer-section .footer-copy {
    order: 3;
  }

  footer.footer-section .footer-legal {
    flex-direction: column;
    gap: 10px;
  }
}
section.contact-section {
  padding: 60px 0;
  font-family: "Inter", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  background: repeating-conic-gradient(
    from 0deg,
    rgba(163, 106, 83, 0.12) 0deg 0.15deg,
    transparent 0.15deg 6deg
  );
}

section.contact-section .contact-modal {
  background: #fff;
  padding: 40px;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  border: 1px solid #ddd;
  position: relative;
}

section.contact-section h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #000;
}

section.contact-section p.contact-desc {
  margin-bottom: 30px;
  color: #555;
}

section.contact-section .contact-form-group {
  margin-bottom: 20px;
  text-align: left;
}

section.contact-section label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
  color: #333;
}

section.contact-section input[type="text"],
section.contact-section input[type="email"],
section.contact-section input[type="tel"],
section.contact-section textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

section.contact-section textarea {
  height: 120px;
  resize: vertical;
}

section.contact-section .contact-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 0.9rem;
}

section.contact-section .contact-checkbox a {
  color: #3d352f;
  text-decoration: underline;
  transition: color 0.3s ease;
}

section.contact-section .contact-checkbox a:hover {
  color: #a36a53;
}

section.contact-section .contact-submit {
  width: 100%;
  padding: 15px;
  background-color: #000;
  color: #fff;
  border: none;
  font-weight: bold;
  cursor: pointer;
}

section.contact-section .contact-submit:hover {
  background-color: #333;
}
section.hero-full-wrapper {
  min-height: 80vh;
  font-family: "Georgia", serif;
  margin-top: 82px;
}

section.hero-full-wrapper video.hero-full-bg {
  object-fit: cover;
  z-index: 0;
}

section.hero-full-wrapper .hero-overlay {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.35),
    rgba(163, 106, 83, 0.5)
  );
  z-index: 1;
}

section.hero-full-wrapper .container {
  z-index: 2;
}

section.hero-full-wrapper h1.hero-full-title {
  font-size: 45px;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.5px;
  margin-bottom: 28px;
}

section.hero-full-wrapper p.hero-full-desc {
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 560px;
  opacity: 0.85;
  font-weight: 300;
}

section.hero-full-wrapper .hero-full-buttons .btn-light {
  padding: 14px 36px;
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-width: 2px;
  transition: all 0.3s ease;
}

section.hero-full-wrapper .hero-full-buttons .btn-light:hover {
  background: #fff;
  color: #3d352f;
}

@media (max-width: 992px) {
  section.hero-full-wrapper {
    min-height: 70vh;
  }
}

@media (max-width: 768px) {
  section.hero-full-wrapper {
    min-height: 100vh;
    align-items: flex-end;
    padding-bottom: 60px;
  }

  section.hero-full-wrapper h1.hero-full-title {
    font-size: 2rem;
    margin-bottom: 16px;
  }

  section.hero-full-wrapper p.hero-full-desc {
    font-size: 0.95rem;
    margin-bottom: 28px;
  }
}

@media (max-width: 480px) {
  section.hero-full-wrapper {
    padding-bottom: 48px;
  }

  section.hero-full-wrapper h1.hero-full-title {
    font-size: 1.6rem;
  }

  section.hero-full-wrapper p.hero-full-desc {
    font-size: 0.9rem;
  }

  section.hero-full-wrapper .hero-full-buttons .btn-light {
    padding: 12px 22px;
    font-size: 0.8rem;
    min-width: 120px;
  }
}
section.feat-container {
  background: linear-gradient(135deg, #f5f3ed 0%, #faf8f4 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
  color: #3d352f;
  font-family: "Inter", sans-serif;
}

section.feat-container .feat-header {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 50px;
  align-items: flex-start;
}

section.feat-container .feat-tagline {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 10px;
  color: #a36a53;
  letter-spacing: 1px;
}

section.feat-container .feat-main-heading {
  font-size: 2.5rem;
  line-height: 1.2;
  margin: 0;
  font-family: "Georgia", serif;
  color: #3d352f;
}

section.feat-container .feat-underline {
  display: inline-block;
  color: #3d352f;
  line-height: 0.8;
  font-family: "Georgia", serif;
}

section.feat-container .feat-desc {
  max-width: 500px;
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

section.feat-container .feat-divider {
  border: 0;
  border-top: 1px solid rgba(163, 106, 83, 0.15);
  margin-bottom: 20px;
}

section.feat-container .feat-grid {
  display: flex;
  gap: 0;
  margin-bottom: 40px;
}

section.feat-container .feat-card {
  flex: 1;
  padding: 0 40px;
  border-right: 1px solid rgba(163, 106, 83, 0.15);
}

section.feat-container .feat-card:last-child {
  border-right: none;
}

section.feat-container .feat-icon {
  font-size: 2rem;
  margin-bottom: 20px;
}

section.feat-container .feat-card-title {
  font-size: 1.5rem;
  color: #3d352f;
  margin-bottom: 15px;
  font-family: "Georgia", serif;
}

section.feat-container .feat-card-desc {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #555;
}

section.feat-container .feat-footer {
  display: flex;
  gap: 20px;
  align-items: center;
}

section.feat-container .feat-btn {
  padding: 12px 30px;
  border: 1px solid #3d352f;
  background: transparent;
  cursor: pointer;
  font-weight: 500;
  color: #3d352f;
}

section.feat-container .feat-link {
  text-decoration: none;
  color: #a36a53;
  font-weight: 600;
}

@media (max-width: 768px) {
  section.feat-container .feat-header {
    flex-direction: column;
  }

  section.feat-container .feat-grid {
    flex-direction: column;
    gap: 40px;
  }

  section.feat-container .feat-card {
    border-right: none;
  }
}
.feat-icon {
  color: #3d352f;
}
.privacy-policy-section h1 {
  font-family: "Georgia", serif;
  font-size: 32px;
  color: #a36a53;
  margin-bottom: 24px;
}

.privacy-policy-section h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}

.privacy-policy-section p {
  font-size: 16px;
  line-height: 1.5;
  color: #444;
}


.content-404 .error {
  font-size: 150px;
  color: #C05A3D;
  padding-top: 150px;
  text-shadow:
    1px 1px 1px #9b4832,
    2px 2px 1px #9b4832,
    3px 3px 1px #9b4832,
    4px 4px 1px #9b4832,
    5px 5px 1px #9b4832,
    6px 6px 1px #9b4832,
    7px 7px 1px #9b4832,
    8px 8px 1px #9b4832,
    25px 25px 8px rgba(0, 0, 0, 0.2);
}

.page {
  margin: 2rem 0;
  font-size: 20px;
  font-weight: 600;
  color: #444;
}

.back-home {
  display: inline-block;
  border: 2px solid #222;
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.75rem 1rem 0.6rem;
  transition: all 0.2s linear;
  box-shadow: 0 15px 15px -11px rgba(0, 0, 0, 0.4);
  background: #222;
  border-radius: 6px;
}
.back-home:hover {
  background: #222;
  color: #ddd;
}
