* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #000000;
  background: #ffffff;
}

.no-js {
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: #d2ae6d;
  transition: all 0.3s;
}

a:hover {
  color: #000000;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'EB Garamond', serif;
  font-weight: 600;
  line-height: 1.2;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 15px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

[class*="col-"] {
  padding: 0 15px;
}

.col-md-6 {
  width: 50%;
}

.col-md-8 {
  width: 66.666%;
}

.col-md-10 {
  width: 83.333%;
}

.col-md-12 {
  width: 100%;
}

.col-lg-3 {
  width: 25%;
}

.col-lg-4 {
  width: 33.333%;
}

.offset-md-1 {
  margin-left: 8.333%;
}

.justify-content-center {
  justify-content: center;
}

.text-center {
  text-align: center;
}

.mb-3 {
  margin-bottom: 1em;
}

.mb-4 {
  margin-bottom: 1.5em;
}

.mb-5 {
  margin-bottom: 2.5em;
}

.mb-60 {
  margin-bottom: 60px;
}

.pb-2 {
  padding-bottom: 0.5em;
}

.pb-4 {
  padding-bottom: 1.5em;
}

.px-4 {
  padding-left: 1.5em;
  padding-right: 1.5em;
}

.py-3 {
  padding-top: 1em;
  padding-bottom: 1em;
}

/* Header */
.masthead {
  background: #252a33;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: relative;
  z-index: 999;
}

.wf-wrap {
  width: 100%;
}

.header-bar {
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.branding {
  flex: 0 0 auto;
}

#site-logo img {
  max-height: 75px;
  width: auto;
  display: block;
}

.navigation {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  margin-left: 50px;
}

.main-nav {
  list-style: none;
  display: flex;
  gap: 35px;
  align-items: center;
  margin: 0;
  padding: 0;
}

.main-nav .menu-item a {
  font-family: 'EB Garamond', serif;
  font-size: 17px;
  font-weight: 600;
  color: #ffffff;
  padding: 12px 8px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.main-nav .menu-item a:hover,
.main-nav .menu-item.act a {
  color: #d2ae6d;
}

.mobile-menu-trigger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
}

.mobile-menu-trigger span {
  width: 30px;
  height: 3px;
  background: #ffffff;
  display: block;
  transition: all 0.3s;
}

/* Mobile Menu */
.dt-mobile-header {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: #ffffff;
  z-index: 9999;
  transition: right 0.3s;
  box-shadow: -5px 0 20px rgba(0,0,0,0.1);
  overflow-y: auto;
}

.dt-mobile-header.active {
  right: 0;
}

.dt-close-mobile-menu-icon {
  padding: 20px;
  cursor: pointer;
  text-align: right;
}

.close-line-wrap {
  display: inline-block;
  position: relative;
  width: 30px;
  height: 30px;
}

.close-line {
  position: absolute;
  width: 100%;
  height: 3px;
  background: #000000;
  top: 50%;
  left: 0;
}

.close-line:first-child {
  transform: rotate(45deg);
}

.close-line:last-child {
  transform: rotate(-45deg);
}

.mobile-main-nav {
  list-style: none;
  padding: 0 20px;
}

.mobile-main-nav .menu-item {
  border-bottom: 1px solid #eee;
}

.mobile-main-nav .menu-item a {
  display: block;
  padding: 15px 0;
  color: #000000;
  font-size: 16px;
}

/* Hero Slider */
#main-slideshow {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 500px;
  max-height: 700px;
  overflow: hidden;
}

rs-module-wrap {
  width: 100%;
  height: 100%;
  display: block;
}

rs-module {
  width: 100%;
  height: 100%;
  position: relative;
  display: block;
}

rs-slides {
  width: 100%;
  height: 100%;
  position: relative;
  display: block;
}

rs-slide {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  display: block;
}

rs-slide.active {
  opacity: 1;
  z-index: 1;
}

.rev-slidebg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slider-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.5) 100%);
  z-index: 1;
}

.slider-title {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: #ffffff;
  font-size: 52px;
  font-weight: 700;
  text-align: center;
  font-family: 'EB Garamond', serif;
  width: 90%;
  max-width: 900px;
  line-height: 1.2;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.slider-subtitle {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: #ffffff;
  font-size: 22px;
  font-weight: 400;
  text-align: center;
  font-family: 'Roboto', sans-serif;
  width: 85%;
  max-width: 700px;
  line-height: 1.5;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.4);
}

.slider-buttons {
  position: absolute;
  top: 72%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}

.rev-btn {
  display: inline-block;
  padding: 15px 35px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 5px;
  transition: all 0.3s;
  font-family: 'EB Garamond', serif;
}

.dt-btn {
  background-color: #d2ae6d;
  color: #ffffff;
  border: 2px solid #d2ae6d;
}

.dt-btn:hover {
  background-color: #000000;
  border-color: #000000;
  color: #ffffff;
}

.dt-btn-outline {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.dt-btn-outline:hover {
  background-color: #ffffff;
  color: #000000;
}

rs-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(255,255,255,0.3);
  z-index: 3;
}

/* Main Content */
#main {
  padding: 50px 0;
}

.wf-container-main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.vc_row {
  margin-bottom: 50px;
}

.wpb_column {
  width: 100%;
}

.vc_col-sm-12 {
  width: 100%;
}

.vc_col-sm-6 {
  width: 50%;
}

.vc_col-sm-3 {
  width: 25%;
}

.intro-text {
  padding: 50px 0;
}

.intro-text h1 {
  font-size: 42px;
  margin-bottom: 30px;
  color: #000000;
}

.intro-text p {
  font-size: 1.1em;
  line-height: 1.8em;
  margin-top: 1.4em;
  color: #333;
}

/* Features Section */
.features-section {
  padding: 70px 0;
  background: #f9f9f9;
}

.features {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.features h2 {
  font-size: 40px;
  font-weight: 700;
  color: #1F1F1F;
  font-family: 'Playfair Display', serif;
  margin-bottom: 40px;
  line-height: 1.3;
}

.features h2.twenty {
  font-size: 40px;
}

.features ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.features ul li {
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
  color: #555;
  margin-bottom: 18px;
  font-family: "Poppins", sans-serif;
  padding-left: 35px;
  position: relative;
}

.features ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #d2ae6d;
  font-size: 24px;
  font-weight: 700;
}

/* Service Cards Section */
.service-area {
  background: #ffffff;
  padding-top: 100px;
  padding-bottom: 80px;
}

.service-area .col-lg-4:nth-child(3) .singl-services::before {
  display: none;
}

.service-area .singl-services {
  position: relative;
}

.service-area .singl-services::before {
  position: absolute;
  content: "";
  top: 50%;
  right: -17px;
  width: 2px;
  height: 75px;
  background: #ddd;
  transform: translateY(-50%);
}

.service-area .singl-services .top-caption h4 {
  color: #000000;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 10px;
}

.service-area .singl-services .top-caption p {
  font-family: "Playfair Display", serif;
  color: #666;
  font-size: 18px;
  margin-bottom: 40px;
}

.service-area .singl-services .services-img {
  position: relative;
  z-index: 0;
  margin-bottom: 35px;
}

.service-area .singl-services .services-img img {
  position: relative;
  border: 8px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  width: 280px;
  height: 280px;
  object-fit: cover;
}

.service-area .singl-services .services-img .back-flower {
  position: absolute;
  right: 30px;
  bottom: -10px;
  z-index: -1;
  top: 5px;
  opacity: 0.3;
}

.service-area .singl-services .services-img .back-flower img {
  margin-bottom: 0px;
  border: 0;
  border-radius: 0;
  width: 200px;
  height: auto;
}

.service-area .singl-services .bottom-caption span {
  color: #d2ae6d;
  letter-spacing: 8px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
  display: block;
  text-transform: uppercase;
}

.service-area .singl-services .bottom-caption p {
  color: #666;
  font-size: 15px;
  line-height: 28px;
}

/* CTA Block */
.dark-section {
  background: #17181b !important;
  padding: 100px 20px !important;
  margin: 70px 0 50px 0;
  text-align: center;
}

.cta-block {
  max-width: 900px;
  margin: 0 auto;
}

.cta-block h2 {
  color: #fff;
  font-size: 2.4em;
  line-height: 1.3;
  margin-bottom: 20px;
}

.cta-block p {
  color: #fff;
  font-size: 1.3em;
  line-height: 1.6;
}

.cta-block .dt-btn {
  padding: 18px 45px;
  font-size: 18px;
  margin-top: 15px;
  display: inline-block;
}

/* Pricing Section */
.ftco-section {
  padding: 90px 0;
  background: #f9f9f9;
}

.heading-section {
  font-size: 16px;
}

.heading-section h2 {
  font-size: 42px;
  font-weight: 700;
  color: #000000;
  font-family: "Fredericka the Great", cursive;
  line-height: 1.4;
}

.heading-section h2 span {
  color: #d2ae6d;
}

.heading-section p {
  color: #666;
  line-height: 1.8;
  font-size: 16px;
}

.bg-light {
  background: #ffffff !important;
}

.pricing-entry {
  margin-bottom: 30px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0px 8px 25px -5px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
}

.pricing-entry:hover,
.pricing-entry.active {
  box-shadow: 0px 15px 40px -5px rgba(0, 0, 0, 0.25);
  transform: translateY(-8px);
}

.pricing-entry h3 {
  font-size: 26px;
  font-weight: 600;
  color: #000;
  padding: 25px 0 10px;
}

.pricing-entry .price {
  font-size: 44px;
  font-weight: 700;
  color: #d2ae6d;
}

.pricing-entry .per {
  font-size: 15px;
  color: #999;
}

.pricing-entry .img {
  width: 100%;
  height: 220px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin: 25px 0;
}

.pricing-entry p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  margin: 20px 0;
}

.pricing-entry .button {
  padding: 0 20px 25px;
}

.btn {
  cursor: pointer;
  border-radius: 30px;
  box-shadow: none !important;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 14px 28px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
}

.btn-primary {
  background: #d2ae6d !important;
  border: 2px solid #d2ae6d !important;
  color: #fff !important;
}

.btn-primary:hover {
  background: transparent !important;
  border: 2px solid #d2ae6d !important;
  color: #d2ae6d !important;
}

.btn-secondary {
  background: #17181b !important;
  border: 2px solid #17181b !important;
  color: #fff !important;
}

.btn-secondary:hover {
  background: transparent !important;
  border: 2px solid #17181b !important;
  color: #17181b !important;
}

.btn-tertiary {
  background: #d2ae6d !important;
  border: 2px solid #d2ae6d !important;
  color: #fff !important;
}

.btn-tertiary:hover {
  background: #000 !important;
  border: 2px solid #000 !important;
  color: #fff !important;
}

.btn-quarternary {
  background: #5a5a5a !important;
  border: 2px solid #5a5a5a !important;
  color: #fff !important;
}

.btn-quarternary:hover {
  background: transparent !important;
  border: 2px solid #5a5a5a !important;
  color: #5a5a5a !important;
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
  background: #ffffff;
}

.faq-section h2 {
  font-size: 40px;
  color: #000;
  font-weight: 700;
}

.faq-item {
  margin-bottom: 20px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  overflow: hidden;
}

.faq-question {
  background: #f9f9f9;
  padding: 20px 25px;
  cursor: pointer;
  transition: background 0.3s;
}

.faq-question:hover {
  background: #f0f0f0;
}

.faq-question h3 {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 15px;
}

.faq-question i {
  color: #d2ae6d;
  font-size: 14px;
  transition: transform 0.3s;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s, padding 0.3s;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 20px 25px;
  background: #ffffff;
}

.faq-answer p {
  margin: 0;
  color: #555;
  line-height: 1.8;
  font-size: 15px;
}

/* Contact Form Section */
.contact-form-section {
  padding: 80px 0;
  background: #f9f9f9;
}

.contact-form-section h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #000;
}

.contact-form-section .intro-text {
  font-size: 16px;
  color: #666;
  margin-bottom: 30px;
  padding: 0;
}

.contact-info-block {
  margin-top: 40px;
}

.contact-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  align-items: flex-start;
}

.contact-item i {
  font-size: 24px;
  color: #d2ae6d;
  flex-shrink: 0;
  margin-top: 5px;
}

.contact-item h4 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #000;
}

.contact-item p {
  font-size: 15px;
  color: #666;
  margin: 0;
  line-height: 1.6;
}

.social-links {
  margin-top: 40px;
}

.social-links h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #000;
}

.social-links a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: #d2ae6d;
  color: #fff;
  border-radius: 50%;
  margin-right: 10px;
  transition: all 0.3s;
}

.social-links a:hover {
  background: #000;
  transform: translateY(-3px);
}

.social-links i {
  font-size: 18px;
}

.contact-form {
  background: #ffffff;
  padding: 40px 35px;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.nf-field-container {
  clear: both;
  position: relative;
  margin-bottom: 22px;
}

.nf-field-container label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #333;
  font-size: 14px;
}

.nf-field-element {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 15px;
  font-family: 'Roboto', sans-serif;
  transition: border-color 0.3s;
}

.nf-field-element:focus {
  outline: none;
  border-color: #d2ae6d;
}

textarea.nf-field-element {
  resize: vertical;
  min-height: 120px;
}

select.nf-field-element {
  cursor: pointer;
}

.checkbox-container {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.checkbox-container input[type="checkbox"] {
  margin-top: 4px;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.checkbox-container label {
  margin: 0;
  font-size: 13px;
  cursor: pointer;
}

.checkbox-container a {
  color: #d2ae6d;
  text-decoration: underline;
}

.submit-btn {
  width: 100%;
  padding: 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  margin-top: 10px;
}

/* Footer */
#footer {
  background: #17181b;
  color: #ffffff;
  padding: 60px 0 30px 0;
}

.wf-container-footer {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.wf-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.wf-cell {
  padding: 0 15px;
}

.wf-1-4 {
  width: 25%;
}

.widget {
  margin-bottom: 30px;
}

.widget-title {
  font-size: 20px;
  margin-bottom: 20px;
  color: #d2ae6d;
  font-weight: 600;
}

.textwidget p {
  font-size: 14px;
  line-height: 1.8;
  color: #cccccc;
  margin-bottom: 15px;
}

.footer-menu {
  list-style: none;
}

.footer-menu li {
  margin-bottom: 12px;
}

.footer-menu a {
  color: #cccccc;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-menu a:hover {
  color: #d2ae6d;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}

.footer-social a {
  display: inline-block;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  background: #2a2b2f;
  color: #fff;
  border-radius: 50%;
  transition: all 0.3s;
}

.footer-social a:hover {
  background: #d2ae6d;
  transform: translateY(-3px);
}

.footer-social i {
  font-size: 16px;
}

/* Bottom Bar */
#bottom-bar {
  background: #0f1012;
  padding: 20px 0;
  border-top: 1px solid #2a2b2f;
}

.wf-container-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bottom-bar-left p,
.bottom-bar-right p {
  margin: 0;
  font-size: 13px;
  color: #999;
}

.bottom-bar-right i {
  color: #d2ae6d;
  margin: 0 3px;
}

/* Scroll to Top */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: #d2ae6d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 999;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: #000;
  transform: translateY(-5px);
}

.scroll-top svg {
  fill: #ffffff;
}

.scroll-top .screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Cookie Notice */
.cookie-notice-container {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  box-shadow: 0 -5px 20px rgba(0,0,0,0.15);
  z-index: 99999;
  padding: 25px 20px;
  animation: slideUp 0.5s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.cookie-notice-content {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.cookie-text {
  flex: 1;
}

.cookie-text p {
  margin: 0 0 8px 0;
  font-size: 14px;
  color: #333;
}

.cookie-text p:first-child {
  font-size: 16px;
  font-weight: 600;
  color: #000;
}

.cookie-text i {
  color: #d2ae6d;
  margin-right: 8px;
}

.cookie-text a {
  color: #d2ae6d;
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 15px;
  flex-shrink: 0;
}

.cookie-btn-accept,
.cookie-btn-decline {
  padding: 12px 28px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s;
}

.cookie-btn-accept {
  background: #d2ae6d;
  color: #fff;
}

.cookie-btn-accept:hover {
  background: #000;
}

.cookie-btn-decline {
  background: #f0f0f0;
  color: #333;
}

.cookie-btn-decline:hover {
  background: #e0e0e0;
}

/* Responsive Media Queries */
@media only screen and (max-width: 991px) {
  .navigation {
    display: none;
  }
  
  .mobile-menu-trigger {
    display: flex;
  }
  
  .col-lg-3,
  .col-lg-4 {
    width: 100%;
    margin-bottom: 30px;
  }
  
  .wf-1-4 {
    width: 50%;
  }
  
  #main-slideshow {
    height: 60vh;
    min-height: 450px;
    max-height: 600px;
  }
  
  .slider-title {
    font-size: 38px;
    top: 38%;
  }
  
  .slider-subtitle {
    font-size: 19px;
    top: 53%;
  }
  
  .slider-buttons {
    top: 70%;
  }
  
  .service-area .singl-services::before {
    display: none;
  }
  
  .service-area {
    padding-top: 60px;
    padding-bottom: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .col-md-6,
  .col-md-8,
  .col-md-10 {
    width: 100%;
  }
  
  .offset-md-1 {
    margin-left: 0;
  }
  
  .wf-1-4 {
    width: 100%;
  }
  
  #main-slideshow {
    height: 55vh;
    min-height: 400px;
    max-height: 500px;
  }
  
  .slider-title {
    font-size: 26px;
    top: 35%;
    width: 92%;
    padding: 0 10px;
  }
  
  .slider-subtitle {
    font-size: 15px;
    top: 52%;
    width: 90%;
    padding: 0 10px;
  }
  
  .slider-buttons {
    flex-direction: column;
    gap: 12px;
    top: 75%;
    width: 90%;
  }
  
  .rev-btn {
    padding: 12px 28px;
    font-size: 14px;
  }
  
  .intro-text h1 {
    font-size: 28px;
  }
  
  .features h2 {
    font-size: 26px;
  }
  
  .features ul li {
    font-size: 15px;
    line-height: 26px;
    padding-left: 28px;
  }
  
  .service-area {
    padding-top: 50px;
    padding-bottom: 20px;
  }
  
  .ftco-section {
    padding: 50px 0;
  }
  
  .heading-section h2 {
    font-size: 26px;
  }
  
  .pricing-entry .price {
    font-size: 34px;
  }
  
  .faq-section {
    padding: 50px 0;
  }
  
  .faq-section h2 {
    font-size: 26px;
  }
  
  .contact-form-section {
    padding: 50px 0;
  }
  
  .contact-form-section h2 {
    font-size: 26px;
  }
  
  .wf-container-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .cookie-notice-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn-accept,
  .cookie-btn-decline {
    width: 100%;
  }
}

@media only screen and (max-width: 600px) {
  .service-area .singl-services .services-img .back-flower {
    right: 0px;
    opacity: 0.2;
  }
}

/* ================================================
   Legal Pages Styling
   ================================================ */

.legal-page-content {
  max-width: 900px;
  margin: 80px auto;
  padding: 60px 40px;
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.legal-page-content h1 {
  font-family: 'EB Garamond', serif;
  font-size: 42px;
  font-weight: 700;
  color: #252a33;
  margin-bottom: 15px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.legal-page-content .update-date {
  font-size: 14px;
  color: #777;
  font-style: italic;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 2px solid #d2ae6d;
}

.legal-page-content .intro-text {
  font-size: 18px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 2px solid #d2ae6d;
}

.legal-page-content .content-block {
  margin-bottom: 45px;
}

.legal-page-content .content-block:last-child {
  margin-bottom: 0;
}

.legal-page-content h2 {
  font-family: 'EB Garamond', serif;
  font-size: 28px;
  font-weight: 700;
  color: #252a33;
  margin-bottom: 20px;
  margin-top: 10px;
  padding-left: 15px;
  border-left: 4px solid #d2ae6d;
}

.legal-page-content h3 {
  font-family: 'EB Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: #252a33;
  margin-bottom: 15px;
  margin-top: 25px;
}

.legal-page-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 15px;
  text-align: justify;
}

.legal-page-content p:last-child {
  margin-bottom: 0;
}

.legal-page-content strong {
  font-weight: 600;
  color: #252a33;
}

.legal-page-content ul,
.legal-page-content ol {
  margin: 20px 0;
  padding-left: 40px;
}

.legal-page-content ul li,
.legal-page-content ol li {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 10px;
  padding-left: 5px;
}

.legal-page-content ul {
  list-style: disc;
}

.legal-page-content ol {
  list-style: decimal;
}

.legal-page-content a {
  color: #d2ae6d;
  text-decoration: underline;
  font-weight: 500;
  transition: all 0.3s;
}

.legal-page-content a:hover {
  color: #252a33;
  text-decoration: none;
}

.legal-page-content .company-details p,
.legal-page-content .management-info p {
  background: #f9f9f9;
  padding: 15px 20px;
  margin-bottom: 12px;
  border-radius: 4px;
  border-left: 3px solid #d2ae6d;
}

/* Company Info Page Specific Styles */
.team-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.team-list li {
  background: #f9f9f9;
  padding: 20px 25px;
  margin-bottom: 15px;
  border-radius: 6px;
  border-left: 4px solid #d2ae6d;
  transition: all 0.3s;
}

.team-list li:hover {
  background: #fff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  transform: translateX(5px);
}

.team-list strong {
  display: block;
  font-size: 18px;
  color: #252a33;
  margin-bottom: 5px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin: 30px 0;
}

.value-item {
  background: #f9f9f9;
  padding: 30px 25px;
  border-radius: 6px;
  text-align: center;
  transition: all 0.3s;
  border-top: 3px solid #d2ae6d;
}

.value-item:hover {
  background: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.value-item i {
  font-size: 36px;
  color: #d2ae6d;
  margin-bottom: 15px;
  display: block;
}

.value-item h3 {
  font-size: 20px;
  color: #252a33;
  margin-bottom: 10px;
  margin-top: 0;
}

.value-item p {
  font-size: 15px;
  color: #555;
  margin-bottom: 0;
  text-align: center;
}

/* Contact Details Page Specific Styles */
.contact-info-block {
  background: #f9f9f9;
  padding: 40px;
  border-radius: 8px;
  margin-bottom: 40px;
}

.contact-info-block h2 {
  border: none;
  padding: 0;
  margin-bottom: 25px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  padding: 15px;
  background: #fff;
  border-radius: 4px;
  transition: all 0.3s;
}

.contact-info-item:hover {
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.contact-info-item i {
  font-size: 24px;
  color: #d2ae6d;
  margin-right: 20px;
  margin-top: 5px;
  min-width: 30px;
}

.contact-info-item div {
  flex: 1;
}

.contact-info-item strong {
  display: block;
  font-size: 16px;
  color: #252a33;
  margin-bottom: 5px;
}

.contact-info-item p {
  margin: 0;
  font-size: 15px;
  color: #555;
  text-align: left;
}

.contact-info-item a {
  color: #d2ae6d;
  text-decoration: none;
}

.contact-info-item a:hover {
  text-decoration: underline;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: #252a33;
  color: #fff;
  border-radius: 50%;
  font-size: 18px;
  transition: all 0.3s;
  text-decoration: none;
}

.social-links a:hover {
  background: #d2ae6d;
  transform: translateY(-3px);
}

/* Responsive Legal Pages */
@media only screen and (max-width: 991px) {
  .legal-page-content {
    margin: 50px auto;
    padding: 40px 30px;
  }
  
  .legal-page-content h1 {
    font-size: 36px;
  }
  
  .legal-page-content h2 {
    font-size: 24px;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
}

@media only screen and (max-width: 767px) {
  .legal-page-content {
    margin: 30px 15px;
    padding: 30px 20px;
  }
  
  .legal-page-content h1 {
    font-size: 30px;
  }
  
  .legal-page-content h2 {
    font-size: 22px;
  }
  
  .legal-page-content p,
  .legal-page-content ul li,
  .legal-page-content ol li {
    font-size: 15px;
    text-align: left;
  }
  
  .legal-page-content ul,
  .legal-page-content ol {
    padding-left: 25px;
  }
  
  .contact-info-block {
    padding: 25px 20px;
  }
  
  .contact-info-item {
    flex-direction: column;
  }
  
  .contact-info-item i {
    margin-bottom: 10px;
  }
  
  .social-links {
    justify-content: center;
  }
}
