/* Reset */
html,
body {
	margin: 0;
	padding: 0;
}
html {
  scroll-behavior: smooth;
    scroll-padding-top: 40px; /* fixed 40px offset for your fixed header */
}

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

body,
button,
input,
select,
textarea {
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
h1, h2, h3, h4, h5, h6 {
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
.container{
 max-width: 1300px;
 padding: 0px 20px;
    margin: 0 auto;
}
.custom-header {
    width: 100%;
    background: #fff;
    box-shadow: 0 1px 6px rgba(0,0,0,0.08);
    position: fixed;
    z-index: 999;
}

/* Top gradient line */
.top-gradient {
    height: 4px;
    background: linear-gradient(
        to right,
        #f7a400,
        #f54291,
        #7b61ff
    );
}

/* Container */
.header-container {
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo section */
.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-section img {
    width: 64px;
    height: auto;
}

.site-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.site-info .site-title {
    font-size: 18px;
    font-weight: 700;
    color: #151515;
    line-height: 1.2;
}

.site-info p {
    font-size: 14px;
    color: #2b9c55;
    margin-top: 3px;
    margin-bottom: 0;
    line-height: 1.4;
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
    height: 100%;
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 25px;
    list-style: none;
    margin: 0;
    padding: 0;
    height: 100%;
}

.main-nav a {
    text-decoration: none;
    font-size: 16px;
    font-weight:600;
    transition: 0.3s ease;
}

/* Menu Colors */
.blue a {
    color: #0d47ff;
}

.gold a {
    color: #b67900;
}

.red a {
    color: #d11b1b;
}

.green a {
    color: #0a8a2a;
}

.main-nav a:hover {
    opacity: 0.75;
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    font-size: 30px;
    cursor: pointer;
}

/* Responsive */
/* Desktop default */
.menu-toggle {
    display: none;
}

/* Mobile / tablet: width <= 1199px */
@media (max-width: 1199px) {

    /* Start closed */
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;           /* just below header */
        left: 0;
        right: 0;
        background: #fff;
        border-top: 1px solid #ddd;
        padding: 12px 16px;
        z-index: 999;
        height: auto;
         opacity: 0;
        transform: translateY(-10px);
        pointer-events: none;
        transition: opacity 200ms ease-out, transform 200ms ease-out;
        
    }
     
.main-nav ul {display: block;}
    /* Open state when toggled */
    .main-nav.is-open {
        display: block;
            opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .menu-toggle {
        display: inline-block;
        font-size: 24px;
        cursor: pointer;
        background: none;
        border: none;
    }

    /* Switch to vertical mobile menu */
    .menu-list {
        display: block;
    }

    .menu-list li {
        display: block;
        margin: 0;
        border-bottom: 1px solid #eee;
    }

    .menu-list li a {
        display: block;
        padding: 10px 0;
    }

    
}
@media (max-width: 1024px) {
    .main-nav ul {
        gap: 20px;
    }

    .main-nav a {
        font-size: 16px;
    }
}

@media (max-width: 991px) {
    .menu-toggle {
        display: block;
    }

    .main-nav {
        display: none;
    }

    .site-info h2 {
        font-size: 16px;
    }

    .site-info p {
        font-size: 13px;
    }

    .logo-section img {
        width: 60px;
    }
   
}

/* Footer */
.custom-footer {
    background: #000;
    padding: 70px 20px 20px;
}

/* Container */


/* Footer Brand */
.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-bottom: 15px;
}

/* Logo */
.footer-logo img {
    width: 128px;
    height: auto;
    object-fit: contain;
}

/* Footer Content */
.footer-content {
    text-align: left;
}

.footer-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
    line-height: 1.2;
}

.footer-content p {
    font-size: 24px;
    color: #00ff99;
    margin: 0;
}

/* Copyright */
.footer-bottom p {
    color: #a1a1a1;
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
    text-align: center;
}

/* Tablet */
@media (max-width: 991px) {

    .footer-brand {
        flex-direction: column;
        text-align: center;
    }

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

    .footer-content h2 {
        font-size: 34px;
    }

    .footer-content p {
        font-size: 20px;
    }
}

/* Mobile */
@media (max-width: 576px) {

    .custom-footer {
        padding: 50px 20px 30px;
    }

    .footer-logo img {
        width: 120px;
    }

    .footer-content h2 {
        font-size: 28px;
    }

    .footer-content p {
        font-size: 18px;
    }

    .footer-bottom p {
        font-size: 14px;
    }
}

/* Slider Section */
.fade-slider {
  position: relative;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.fade-slider__slides {
  position: relative;
  min-height: 640px;
}

.fade-slider__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  height: 550px;
  visibility: hidden;
  transition: opacity 600ms ease, visibility 600ms ease;
}

.fade-slider__slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.fade-slider__slide img {
  width: 100%;
  object-fit: cover;
  display: block;
}
.fade-slider__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  color: #fff;
  background: rgba(0, 0, 0, 0.25);
}
.fade-slider__content h1 {
  font-size: 78px;
  font-weight: 500;
  line-height: 1.2;
  max-width: 900px;
  margin-bottom: 16px;
}

.fade-slider__content p {
  font-size: 26px;
  line-height: 1.5;
  max-width: 900px;
  margin: 0;
}

.fade-slider__dots {
  position: absolute;
  left: 50%;
  bottom: 40px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 2;
}

.fade-slider__dot {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
  padding: 0px;
}

.fade-slider__dot.is-active {
  background: #fff;
  transform: scale(1.15);
  width: 25px;
    border-radius: 10px;
}

.fade-slider__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  padding: 14px 30px;
  background: #009966;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.fade-slider__btn:hover {
  background: #007a52;
  color: #fff;
  transform: translateY(-2px);
}

.homestay-section {
  padding: 0;
  background: #fafafa;
}
.homestay-inner-section{
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 0px;
}

.homestay-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 700px;
}

.homestay-content {
  padding: 0px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.homestay-content h2 {
font-size: clamp(36px, 2.5vw, 36px);
  line-height: 1.1;
  font-weight: 500;
  color: #111;
  margin: 0 0 16px;
  letter-spacing: -0.5px;
}

.homestay-content p {
  font-size: 20px;
  line-height: 1.75;
  color: #4b4b4b;
  margin: 0 0 22px;
  max-width: 95%;
}

.homestay-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(240px, 1fr));
  gap: 26px 40px;
  margin-top: 18px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.feature-icon {
  font-size: 30px;
  line-height: 1;
  color: #119766;
  flex-shrink: 0;
  margin-top: 3px;
}
.feature-icon svg {
  color: #119766;

}
.feature-text h4 {
  font-size: 18px;
  font-weight: 600;
  color: #111;
  margin: 0 0 6px;
}

.feature-text p {
  font-size: 16px;
  line-height: 1.5;
  color: #666;
  margin: 0;
}

.homestay-content .feature-text p{
    max-width:100%
}

.homestay-image {
  height: 100%;
  border-radius: 10px;
}

.homestay-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 15px;
}

/* Responsive */
@media (max-width: 991px) {
  .homestay-wrap {
    grid-template-columns: 1fr;
  }

  .homestay-content {
    padding: 24px 0px;
  }

  .homestay-content h2 {
    font-size: 38px;
  }

  .homestay-content p {
    font-size: 18px;
    max-width: 100%;
  }

  .homestay-image {
    min-height: 420px;
  }
  .homestay-inner-section {
    padding: 0px;
  }
}

@media (max-width: 575px) {
  .homestay-content h2 {
    font-size: 32px;
  }

  .homestay-content p {
    font-size: 16px;
    line-height: 1.7;
  }

  .homestay-features {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}


@media (max-width: 767px) {
  .fade-slider__slides,
  .fade-slider__slide {
    min-height: 500px;
    height: 500px;
  }

  .fade-slider__content h1 {
    font-size: 28px;
  }

  .fade-slider__content p {
    font-size: 16px;
  }
}

/*Luxuary rooms */

.luxury-rooms{
    padding:80px 0px;
}

.luxury-rooms .container{
    margin:0 auto;
}

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

.section-header h2{
font-size: clamp(36px, 2.5vw, 36px);
    line-height:1.2;
    font-weight:600;
    color:#111;
    margin-bottom:25px;
}

.section-header .description{
    max-width:1000px;
    margin:0 auto 25px;
    font-size:20px;
    line-height:1.6;
    color:#555;
}

.section-header .subtitle{
    font-size:22px;
    color:#008c6a;
    font-weight:400;
}

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

.room-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
    transition:.3s ease;
}

.room-card:hover{
    transform:translateY(-5px);
}

.room-image{
    overflow:hidden;
}

.room-image img{
    width:100%;
    display:block;
    height:310px;
    object-fit:cover;
}

.room-content{
    padding:30px;
}

.room-content h3{
  font-size: clamp(18px, 2.2vw + 6px, 24px);
    line-height:1.3;
    font-weight:500;
    color:#111;
    margin-bottom:18px;
}

.features-list{
    list-style:none;
    padding:0;
    margin:0;
}

.features-list li{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:8px;
}

.features-list li:last-child{
    margin-bottom:0;
}

.features-list img{
    width:20px;
    height:20px;
    object-fit:contain;
    flex-shrink:0;
}



/* Tablet */
@media(max-width:1199px){

    .room-grid{
        grid-template-columns:repeat(3,1fr);
    }

 

    .features-list span{
        font-size:14px;
    }
}

/* Mobile */
@media(max-width:767px){

    .luxury-rooms{
        padding:60px 15px;
    }
    .luxury-rooms .container {padding: 0px;}

    .room-grid{
        grid-template-columns:1fr;
        gap:25px;
    }

    .section-header{
        margin-bottom:40px;
    }

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

    .section-header .description{
        font-size:18px;
    }

    .section-header .subtitle{
        font-size:18px;
    }

    .room-content{
        padding:20px;
    }

    .room-content h3 {
  line-height: 1.3;
}

    .features-list span{
        font-size:14px;
    }

    .room-image img{
        height:250px;
    }
}


.traveler-section {
	padding-top: 80px;
	padding-bottom: 80px;
	background: linear-gradient(180deg, #ffffff 0%, #f3fffb 100%);
	position: relative;
	overflow: hidden;
}

.traveler-section__container {
	width: 100%;
	margin: 0 auto;
	padding-left: 0px;
	padding-right: 0px;
}

.traveler-section__heading {
	text-align: center;
	max-width: 760px;
	margin: 0 auto 50px;
}

.traveler-section__heading h3 {
	margin: 0 0 12px;
	font-size: clamp(34px, 2.5vw, 36px);
	line-height: 1.1;
	font-weight: 600;
	color: #111111;
}

.traveler-section__heading p {
	margin: 0;
	font-size: 18px;
	line-height: 1.6;
	color: #555555;
}

.traveler-section__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 30px;
	align-items: stretch;
}

.traveler-card {
	background: #ffffff;
	border-radius: 24px;
	padding: 34px 34px 30px;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
	border-top: 4px solid #10a37f;
	text-align: center;
	display: flex;
	flex-direction: column;
	min-height: 100%;
}

.traveler-card__icon {
	width: 82px;
	height: 82px;
	border-radius: 50%;
	background: #dffbef;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 26px;
	padding: 20px;
	flex-shrink: 0;
}

.traveler-card__icon img {
	display: block;
	width: 40px;
	height: 40px;
	object-fit: contain;
}

.traveler-card h3 {
	margin: 0 0 20px;
  font-size: clamp(18px, 2.2vw + 6px, 24px);
	line-height: 1.2;
	font-weight: 500;
	color: #111111;
}

.traveler-card > p {
	margin: 0 0 28px;
	font-size: 17px;
	line-height: 1.75;
	color: #555555;
	max-width: 34ch;
	margin-left: auto;
	margin-right: auto;
}

.traveler-card__list {
	list-style: none;
	padding: 0;
	margin: auto 0 0;
	text-align: left;
}

.traveler-card__list li {
	position: relative;
	padding-left: 34px;
	margin-bottom: 16px;
	font-size: 16px;
	line-height: 1.5;
	color: #2f2f2f;
}

.traveler-card__list li:last-child {
	margin-bottom: 0;
}

.traveler-card__list li::before {
	content: "\2713";
	position: absolute;
	left: 0;
	top: 1px;
	width: 22px;
	height: 22px;
	border: 2px solid #10a37f;
	border-radius: 50%;
	color: #10a37f;
	font-size: 13px;
	font-weight: 700;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
}

@media (max-width: 991px) {
	.traveler-section {
		padding-top: 0px;
		padding-bottom: 60px;
	}
    .traveler-section .container{
        padding: 0px;
    }

	.traveler-section__container {
		padding-left: 16px;
		padding-right: 16px;
	}

	.traveler-section__grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.traveler-card {
		padding: 30px 24px;
	}

	.traveler-section__heading {
		margin-bottom: 36px;
	}

	.traveler-section__heading h2 {
		font-size: 34px;
	}

	.traveler-section__heading p {
		font-size: 16px;
	}
}

.custom-footer .site-info .site-title {color: #fff;}
/*food section*/
.food-experience-section {
    background: #edf8f1;
    padding: 80px 20px;
}

.food-experience-section__container {
    max-width: 1400px;
    margin: 0 auto;
}

.food-experience-section__header {
    max-width: 980px;
    margin: 0 auto 48px;
    text-align: center;
}

.food-experience-section__icon {
    display: flex;
    justify-content: center;
    margin-bottom: 18px;
}

.food-experience-section__icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.food-experience-section__title {
    margin: 0 0 20px;
   	font-size: clamp(34px, 2.5vw, 56px);
    line-height: 1.15;
    font-weight: 600;
    color: #111111;
}

.food-experience-section__description {
    max-width: 900px;
    margin: 0 auto;
    font-size: 19px;
    line-height: 1.6;
    font-weight: 400;
    color: #4b4b4b;
}

.food-experience-section__description p {
    margin: 0;
}

.food-experience-section__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px;
    align-items: stretch;
}

.food-experience-card {
    overflow: hidden;
    border-radius: 28px;
    background: #dfe8e1;
}

.food-experience-card img {
    display: block;
    width: 100%;
    height: 680px;
    object-fit: cover;
}

@media (max-width: 1199px) {
  

    .food-experience-section__description {
        font-size: 20px;
    }

    .food-experience-card img {
        height: 460px;
    }
}

@media (max-width: 767px) {
    .food-experience-section {
        padding: 56px 16px;
    }
    .food-experience-section .container, .food-experience-features .container  {
        padding: 0px;
    }

    .food-experience-section__header {
        margin-bottom: 32px;
    }

    .food-experience-section__icon img {
        width: 38px;
        height: 38px;
    }

    .food-experience-section__title {
        font-size: 32px;
        margin-bottom: 16px;
    }

    .food-experience-section__description {
        font-size: 17px;
        line-height: 1.7;
    }

    .food-experience-section__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .food-experience-card {
        border-radius: 20px;
    }

    .food-experience-card img {
        height: 300px;
    }
}

.food-experience-features {
    background: #edf8f1;
    padding: 54px 12px 32px;
}

.food-experience-features__grid {
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.food-experience-feature-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 28px 30px 30px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    min-height: 330px;
}

.food-experience-feature-card__icon {
    margin-bottom: 22px;
}

.food-experience-feature-card__icon img {
    width: 46px;
    height: 46px;
    object-fit: contain;
    display: block;
}

.food-experience-feature-card__content h3 {
    margin: 0 0 14px;
       font-size: clamp(18px, 2.2vw + 6px, 24px);
    line-height: 1.25;
    font-weight: 500;
    color: #111111;
}

.food-experience-feature-card__description {
    font-size: 22px;
    line-height: 1.55;
    font-weight: 400;
    color: #555555;
}

.food-experience-feature-card__description p {
    margin: 0;
    font-size:18px;
}

@media (max-width: 1199px) {
    .food-experience-features__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

   

    .food-experience-feature-card__description {
        font-size: 19px;
    }
}

@media (max-width: 767px) {
    .food-experience-features {
        padding: 24px 0px;
    }

    .food-experience-features__grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .food-experience-feature-card {
        border-radius: 18px;
        padding: 22px 20px 24px;
        min-height: auto;
    }

    .food-experience-feature-card__icon {
        margin-bottom: 16px;
    }

    .food-experience-feature-card__icon img {
        width: 38px;
        height: 38px;
    }

    .food-experience-feature-card__content h3 {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .food-experience-feature-card__description {
        font-size: 17px;
        line-height: 1.65;
    }
}
/*Sustainability section*/

.sustainability-section {
    background: #edf8f1;
    padding: 0px 20px 80px;
}

.sustainability-section__container {
    max-width: 1440px;
    margin: 0 auto;
}

.sustainability-section__header {
    max-width: 980px;
    margin: 0 auto 56px;
    text-align: center;
}

.sustainability-section__icon {
    display: flex;
    justify-content: center;
    margin-bottom: 18px;
}

.sustainability-section__icon img {
    width: 56px;
    height: 56px;
    object-fit: contain;
}

.sustainability-section__title {
    margin: 0 0 18px;
    font-size: clamp(34px, 2.5vw, 56px);
    line-height: 1.12;
    font-weight: 600;
    color: #111111;
}

.sustainability-section__description {
    max-width: 980px;
    margin: 0 auto 36px;
    font-size: 18px;
    line-height: 1.6;
    font-weight: 400;
    color: #4f4f4f;
}

.sustainability-section__description p {
    margin: 0;
}

.sustainability-section__sdg-title {
    margin: 0 0 22px;
    font-size: 36px;
    line-height: 1.3;
    font-weight: 600;
    color: #111111;
}

.sustainability-section__sdg-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

.sustainability-section__sdg-item img {
    display: block;
    width: 102px;
    height: auto;
    border-radius: 14px;
}

.sustainability-sdg-strip {
    text-align: center;
    margin: 0 0 56px;
}

.sustainability-sdg-strip__title {
    margin: 0 0 22px;
    font-size: 22px;
    line-height: 1.3;
    font-weight: 700;
    color: #111111;
}

.sustainability-sdg-strip__grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.sustainability-sdg-goal {
    width: 105px;
    min-height: 105px;
    border-radius: 14px;
    padding: 14px 10px 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.10);
    text-align: center;
    color: #ffffff;
}

.sustainability-sdg-goal__number {
    display: block;
    margin-bottom: 8px;
    font-size: 34px;
    line-height: 1;
    font-weight: 500;
    color: #ffffff;
}

.sustainability-sdg-goal__label {
    display: block;
    font-size: 10px;
    line-height: 1.2;
    font-weight: 500;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

@media (max-width: 767px) {
    .sustainability-sdg-strip {
        margin-bottom: 36px;
    }

    .sustainability-sdg-strip__title {
        font-size: 18px;
        margin-bottom: 16px;
    }

    .sustainability-sdg-strip__grid {
        gap: 12px;
    }

    .sustainability-sdg-goal {
        width: 82px;
        min-height: 82px;
        border-radius: 12px;
        padding: 12px 8px 10px;
    }

    .sustainability-sdg-goal__number {
        font-size: 24px;
        margin-bottom: 6px;
    }

    .sustainability-sdg-goal__label {
        font-size: 8px;
    }
}

.sustainability-section__cards {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.sustainability-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 34px 28px 30px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    min-height: 390px;
}

.sustainability-card__icon {
    margin-bottom: 24px;
}

.sustainability-card__icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    display: block;
}

.sustainability-card__content h3 {
    margin: 0 0 16px;
    font-size: 20px;
    line-height: 1.35;
    font-weight: 500;
    color: #111111;
}

.sustainability-card__description {
    font-size: 20px;
    line-height: 1.55;
    font-weight: 400;
    color: #555555;
}

.sustainability-card__description p {
    margin: 0;
    font-size: 16px;
}

@media (max-width: 1199px) {
    .sustainability-section__title {
        font-size: 44px;
    }

    .sustainability-section__description {
        font-size: 19px;
    }

    .sustainability-section__cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sustainability-card__content h3 {
        font-size: 24px;
    }

    .sustainability-card__description {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .sustainability-section {
        padding: 0px 16px 56px;
    }
     .sustainability-section .container {
        padding: 0px;
     }

    .sustainability-section__header {
        margin-bottom: 36px;
    }

    .sustainability-section__icon img {
        width: 42px;
        height: 42px;
    }

    .sustainability-section__title {
        font-size: 32px;
        margin-bottom: 14px;
    }

    .sustainability-section__description {
        margin-bottom: 26px;
        font-size: 17px;
        line-height: 1.7;
    }

    

    .sustainability-section__cards {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .sustainability-card {
        border-radius: 18px;
        padding: 24px 20px;
        min-height: auto;
    }

    .sustainability-card__icon {
        margin-bottom: 16px;
    }

    .sustainability-card__icon img {
        width: 40px;
        height: 40px;
    }

    .sustainability-card__content h3 {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .sustainability-card__description {
        font-size: 17px;
        line-height: 1.65;
    }
}

/*contact section*/

.contact-booking-section {
	padding: 80px 0;
	background-color: #171717;
    margin-top:40px;
}

.contact-booking-section__container {
	margin: 0 auto;
}

.contact-booking-section__grid {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 80px;
	align-items: start;
}

.contact-booking-section__content {
	padding-top: 10px;
}

.contact-booking-section__title {
	margin: 0 0 24px;
	font-size: 34px;
	line-height: 1.1;
	font-weight: 500;
	color: #ffffff;
	max-width: 700px;
}

.contact-booking-section__description {
	margin-bottom: 42px;
	max-width: 760px;
}

.contact-booking-section__description p {
	margin: 0;
	font-size: 18px;
	line-height: 1.55;
	color: #cfcfcf;
}

.contact-booking-section__info-list {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.contact-booking-info-item {
	display: flex;
	align-items: flex-start;
	gap: 20px;
}

.contact-booking-info-item__icon {
	flex: 0 0 30px;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 3px;
}

.contact-booking-info-item__icon svg {
	width: 28px;
	height: 28px;
	display: block;
}

.contact-booking-info-item__content h3 {
	margin: 0 0 8px;
	font-size: 16px;
	line-height: 1.3;
	font-weight: 500;
	color: #ffffff;
}

.contact-booking-info-item__content p,
.contact-booking-info-item__content a {
	margin: 0;
	font-size: 18px;
	line-height: 1.55;
	color: #d3d3d3;
	text-decoration: none;
}

.contact-booking-info-item__phones {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.contact-booking-info-item__content a:hover {
	color: #00a36c;
}

.contact-booking-form-box {
	background-color: #2b2b2b;
	border-radius: 20px;
	padding: 36px 36px 40px;
}

.contact-booking-form-box .wpcf7 form {
	margin: 0;
}

.contact-booking-form-box p {
	margin: 0 0 22px;
}

.contact-booking-form-box p:last-of-type {
	margin-bottom: 0;
}

.contact-booking-form-box label {
	display: block;
	margin-bottom: 10px;
	font-size: 15px;
	line-height: 1.3;
	font-weight: 500;
	color: #ffffff;
}

.contact-booking-form-box .wpcf7-form-control-wrap {
	display: block;
}

.contact-booking-form-box input[type="text"],
.contact-booking-form-box input[type="email"],
.contact-booking-form-box input[type="tel"],
.contact-booking-form-box textarea {
	width: 100%;
	border: 1px solid #7d7d7d;
	background-color: #626262;
	border-radius: 14px;
	padding: 18px 20px;
	font-size: 18px;
	line-height: 1.4;
	color: #ffffff;
	outline: none;
	box-shadow: none;
}

.contact-booking-form-box textarea {
	height: 150px;
	resize: vertical;
}

.contact-booking-form-box input::placeholder,
.contact-booking-form-box textarea::placeholder {
	color: #c6c6c6;
	opacity: 1;
}

.contact-booking-form-box input:focus,
.contact-booking-form-box textarea:focus {
	border-color: #00a36c;
}

.contact-booking-form-box .wpcf7-submit {
	width: 100%;
	border: 0;
	border-radius: 14px;
	background-color: #009966;
	padding: 18px 20px;
	font-size: 16px;
	line-height: 1.2;
	font-weight: 500;
	color: #ffffff;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.contact-booking-form-box .wpcf7-submit:hover {
	background-color: #007f55;
}

.contact-booking-form-box .wpcf7-spinner {
	display: none;
}

.contact-booking-form-box .wpcf7-not-valid-tip {
	margin-top: 8px;
	font-size: 14px;
	color: #ffb3b3;
}

.contact-booking-form-box .wpcf7-response-output {
	margin: 20px 0 0;
	padding: 12px 16px;
	border-radius: 10px;
	color: #ffffff;
}

@media (max-width: 1199px) {
	.contact-booking-section__grid {
		gap: 50px;
	}

	.contact-booking-section__title {
		font-size: 46px;
	}

	.contact-booking-section__description p {
		font-size: 21px;
	}
}

@media (max-width: 991px) {
	.contact-booking-section {
		padding: 60px 0;
	}

	.contact-booking-section__grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.contact-booking-section__title {
		font-size: 38px;
	}

	.contact-booking-section__description p {
		font-size: 18px;
	}

	.contact-booking-form-box {
		padding: 26px 22px 30px;
	}

	.contact-booking-form-box .wpcf7-submit {
		font-size: 20px;
	}
}

/*Stay Type section */
.stay-type-section {
	padding: 80px 0;
	background: #ffffff;
}

.stay-type-section__container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 20px;
}

.stay-type-section__header {
	text-align: center;
	margin-bottom: 48px;
}

.stay-type-section__header h2 {
	margin: 0 0 10px;
	font-size: clamp(34px, 2.5vw, 56px);
	line-height: 1.15;
	font-weight: 600;
	color: #111111;
}

.stay-type-section__header p {
	margin: 0;
	font-size: 18px;
	line-height: 1.5;
	color: #5c5c5c;
}

.stay-type-section__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 38px;
}

.stay-card {
	background: #ffffff;
	border-radius: 22px;
	overflow: hidden;
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.10);
}

.stay-card__image img {
	width: 100%;
	height: 350px;
	object-fit: cover;
	display: block;
}

.stay-card__content {
	padding: 28px 30px 30px;
}

.stay-card__content h3 {
	margin: 0 0 22px;
    font-size: clamp(18px, 2.2vw + 6px, 24px);
	line-height: 1.2;
	font-weight: 500;
	color: #111111;
}

.stay-card__features {
	list-style: none;
	margin: 0;
	padding: 0;
}

.stay-card__features li {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 16px;
}

.stay-card__features li:last-child {
	margin-bottom: 0;
}

.stay-card__feature-icon {
	width: 22px;
	height: 22px;
	flex: 0 0 22px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.stay-card__feature-icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

.stay-card__feature-text {
	font-size: 16px;
	line-height: 1.5;
	color: #4a4a4a;
}

@media (max-width: 1199px) {
	.stay-type-section__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.stay-type-section {
		padding: 60px 0;
	}

	.stay-type-section__header {
		margin-bottom: 32px;
	}

	.stay-type-section__header h2 {
		font-size: 34px;
	}

	.stay-type-section__header p {
		font-size: 16px;
	}

	.stay-type-section__grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.stay-card__image img {
		height: 240px;
	}

	.stay-card__content {
		padding: 22px 20px 24px;
	}

	.stay-card__content h3 {
		font-size: 22px;
	}
}

/*Commitment section */

.commitment-section {
    background: #edf8f1;
    padding: 42px 20px 60px;
}

.commitment-section__container {
    max-width: 1840px;
    margin: 0 auto;
}

.commitment-section__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 600px);
    gap: 48px;
    align-items: stretch;
    background: #ffffff;
    border-radius: 28px;
    padding: 46px 54px;
}

.commitment-section__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: center;
    padding-right: 10px;
}

.commitment-section__title {
    margin: 0 0 24px;
   	font-size: clamp(34px, 2.5vw, 56px);
    line-height: 1.2;
    font-weight: 500;
    color: #121212;
}

.commitment-section__description {
    margin-bottom: 26px;
    font-size: 22px;
    line-height: 1.65;
    font-weight: 400;
    color: #505050;
    max-width: 760px;
}

.commitment-section__description p {
    margin: 0;
}

.commitment-section__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.commitment-section__list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
}

.commitment-section__list li:last-child {
    margin-bottom: 0;
}

.commitment-section__check {
    flex: 0 0 28px;
    width: 24px;
    height: 24px;
    color: #00a37a;
    margin-top: 3px;
}

.commitment-section__check svg {
    display: block;
    width: 100%;
    height: 100%;
}

.commitment-section__point-text {
    font-size: 22px;
    line-height: 1.55;
    font-weight: 400;
    color: #444444;
}

.commitment-section__image {
    overflow: hidden;
    border-radius: 28px;
    min-height: 720px;
}

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

@media (max-width: 1399px) {
    .commitment-section__grid {
        grid-template-columns: 1fr 1fr;
        padding: 36px;
    }

    .commitment-section__title {
        	font-size: clamp(34px, 2.5vw, 56px);
    }

    .commitment-section__description,
    .commitment-section__point-text {
        font-size: 16px;
    }

    .commitment-section__image {
        min-height: 620px;
    }
}

@media (max-width: 991px) {
    .commitment-section__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .commitment-section__content {
        order: 2;
        padding-right: 0;
    }

    .commitment-section__image {
        order: 1;
        min-height: 420px;
    }
}

@media (max-width: 767px) {
    .commitment-section {
        padding: 0px 16px 0px;
    }
    .commitment-section .container{
       padding: 0px; 
    }

    .commitment-section__grid {
        border-radius: 20px;
        padding: 20px;
        gap: 22px;
    }

    .commitment-section__title {
        margin-bottom: 16px;
        font-size: 28px;
    }

    .commitment-section__description {
        margin-bottom: 18px;
        font-size: 17px;
        line-height: 1.7;
    }

    .commitment-section__point-text {
        font-size: 17px;
        line-height: 1.6;
    }

    .commitment-section__check {
        flex-basis: 24px;
        width: 24px;
        height: 24px;
    }

    .commitment-section__image {
        border-radius: 20px;
        min-height: 320px;
    }
}

/*Traveller section*/
.eco-traveller-badge-section {
    background: #edf8f1;
    padding: 0px 20px 72px;
}

.eco-traveller-badge-section__container {
    max-width: 1600px;
    margin: 0 auto;
}

.eco-traveller-badge-section__inner {
    max-width: 1120px;
    margin: 0 auto;
    text-align: center;
}

.eco-traveller-badge-section__icon {
    display: flex;
    justify-content: center;
    margin-bottom: 26px;
}

.eco-traveller-badge-section__icon img {
    width: 72px;
    height: 72px;
    object-fit: contain;
    display: block;
}

.eco-traveller-badge-section__title {
    margin: 0 0 24px;
	font-size: clamp(34px, 2.5vw, 56px);
    line-height: 1.15;
    font-weight: 500;
    color: #111111;
}

.eco-traveller-badge-section__description {
    max-width: 800px;
    margin: 0 auto;
    font-size: 20px;
    line-height: 1.7;
    font-weight: 400;
    color: #4f4f4f;
}

.eco-traveller-badge-section__description p {
    margin: 0;
}

@media (max-width: 1199px) {
    .eco-traveller-badge-section__title {
        font-size: 44px;
    }

    .eco-traveller-badge-section__description {
        font-size: 20px;
    }

    .eco-traveller-badge-section__icon img {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 767px) {
    .eco-traveller-badge-section {
        padding: 48px 16px 52px;
    }

    .eco-traveller-badge-section__icon {
        margin-bottom: 18px;
    }

    .eco-traveller-badge-section__icon img {
        width: 46px;
        height: 46px;
    }

    .eco-traveller-badge-section__title {
        font-size: 32px;
        margin-bottom: 16px;
    }

    .eco-traveller-badge-section__description {
        font-size: 17px;
        line-height: 1.7;
    }
}
/* Traveller badge section */
.badge-steps-section {
    background: #edf8f1;
    padding: 26px 20px 60px;
}

.badge-steps-section__container {
    max-width: 1880px;
    margin: 0 auto;
}

.badge-steps-section__box {
    background: #ffffff;
    border-radius: 28px;
    padding: 68px 70px 76px;
}

.badge-steps-section__title {
    margin: 0 0 52px;
    text-align: center;
    font-size: 28px;
    line-height: 1.15;
    font-weight: 500;
    color: #111111;
}

.badge-steps-section__items {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    column-gap: 24px;
    row-gap: 42px;
    align-items: start;
}

.badge-step-item {
    display: flex;
    align-items: flex-start;
    gap: 22px;
}

/* 1st row centered */
.badge-step-item:nth-child(1) {
    grid-column: 4 / 10;
    grid-row: 1;
}

/* 2nd row left */
.badge-step-item:nth-child(2) {
    grid-column: 2 / 7;
    grid-row: 2;
}

/* 2nd row right */
.badge-step-item:nth-child(3) {
    grid-column: 7 / 12;
    grid-row: 2;
}

.badge-step-item__icon {
    width: 88px;
    height: 88px;
    min-width: 88px;
    border-radius: 50%;
    background: #dff9ee;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-step-item__icon img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    display: block;
}

.badge-step-item__content h3 {
    margin: 0 0 14px;
    font-size: 28px;
    line-height: 1.3;
    font-weight: 500;
    color: #111111;
}

.badge-step-item__description {
    font-size: 21px;
    line-height: 1.7;
    font-weight: 400;
    color: #4f4f4f;
}

.badge-step-item__description p {
    margin: 0;
}

@media (max-width: 1399px) {
    .badge-steps-section__box {
        padding: 50px 40px 56px;
    }

    .badge-steps-section__title {
	font-size: clamp(34px, 2.5vw, 56px);
        margin-bottom: 42px;
    }

    .badge-step-item:nth-child(1),
    .badge-step-item:nth-child(2),
    .badge-step-item:nth-child(3) {
       /* grid-column: 1 / -1;*/
        grid-row: auto;
    }

    .badge-step-item__content h3 {
        font-size: 24px;
    }

    .badge-step-item__description {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .badge-steps-section {
        padding: 18px 16px 42px;
    }

    .badge-steps-section .container{
        padding: 0px;
    }

    .badge-steps-section__box {
        border-radius: 20px;
        padding: 32px 20px 36px;
    }

    .badge-steps-section__title {
        font-size: 32px;
        margin-bottom: 28px;
    }

    .badge-steps-section__items {
        row-gap: 24px;
        /* Make grid 1 column on mobile */
        grid-template-columns: 1fr;
    }

    .badge-step-item {
        gap: 16px;
        /* Reset grid column positioning */
        grid-column: 1 !important;
        grid-row: auto !important;
    }

    .badge-step-item__icon {
        width: 64px;
        height: 64px;
        min-width: 64px;
    }

    .badge-step-item__icon img {
        width: 30px;
        height: 30px;
    }

    .badge-step-item__content h3 {
        margin-bottom: 10px;
        font-size: 22px;
    }

    .badge-step-item__description {
        font-size: 16px;
        line-height: 1.65;
    }
}

.eco-badge-showcase {
    background: linear-gradient(90deg, #0d9e66 0%, #05b13e 100%);
    padding: 24px 20px 0;
    overflow: hidden;
}

.eco-badge-showcase__container {
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
}

.eco-badge-showcase__intro {
    max-width: 1080px;
    margin: 0 auto 10px;
    font-size: 28px;
    line-height: 1.7;
    font-weight: 400;
    color: #f3f7f2;
}

.eco-badge-showcase__intro p {
    margin: 0;
}

.eco-badge-showcase__badge {
    max-width: 420px;
    margin: 0 auto;
}

.eco-badge-showcase__badge img {
    width: 100%;
    display: block;
    margin: 0 auto;
}

@media (max-width: 1399px) {
    .eco-badge-showcase__intro {
        max-width: 920px;
        font-size: 22px;
    }

    .eco-badge-showcase__badge {
        max-width: 430px;
    }
}

@media (max-width: 767px) {
    .eco-badge-showcase {
        padding: 18px 16px 0;
    }

    .eco-badge-showcase__intro {
        font-size: 16px;
        line-height: 1.7;
        margin-bottom: 14px;
    }

    .eco-badge-showcase__badge {
        max-width: 280px;
    }
}

/* Premium Amenities */

.premium-amenities-section {
    padding: 90px 0 100px;
    background-color: #ffffff;
}


.premium-amenities-section__head {
    max-width: 980px;
    margin: 0 auto 52px;
    text-align: center;
}

.premium-amenities-section__title {
    margin: 0 0 18px;
    font-size: 2.25rem;
    line-height: 1.1;
    font-weight: 500;
    color: #111111;
}

.premium-amenities-section__subtitle {
    margin: 0;
    font-size: 28px;
    line-height: 1.4;
    font-weight: 400;
    color: #5c5c5c;
}

.premium-amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 36px 36px;
}

.premium-amenities-card {
    min-height: 180px;
    border-radius: 26px;
    background-color: #fafafa;
    padding: 34px 28px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.premium-amenities-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.premium-amenities-card__icon {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.premium-amenities-card__icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    width: 38px;
    height: 38px;
}

.premium-amenities-card__title {
    margin: 0;
    font-size: 23px;
    line-height: 1.35;
    font-weight: 400;
    color: #1a1a1a;
}

@media (max-width: 1399px) {
    .premium-amenities-section__title {
        font-size: 2.25rem;
    }

    .premium-amenities-section__subtitle {
        font-size: 24px;
    }

    .premium-amenities-grid {
        gap: 24px;
    }

    .premium-amenities-card__title {
        font-size: 21px;
    }
}

@media (max-width: 991px) {
    .premium-amenities-section {
        padding: 70px 0 80px;
    }

    .premium-amenities-section__head {
        margin-bottom: 40px;
    }

    .premium-amenities-section__title {
        font-size: 40px;
    }

    .premium-amenities-section__subtitle {
        font-size: 20px;
    }

    .premium-amenities-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .premium-amenities-card {
        min-height: 160px;
        padding: 28px 20px 24px;
    }

    .premium-amenities-card__icon {
        width: 48px;
        height: 48px;
        margin-bottom: 18px;
    }

    .premium-amenities-card__title {
        font-size: 19px;
    }
}

@media (max-width: 575px) {
    .premium-amenities-section {
        padding: 56px 0 64px;
    }

    .premium-amenities-section .container {
        padding: 0 16px;
    }

    .premium-amenities-section__title {
        font-size: 32px;
    }

    .premium-amenities-section__subtitle {
        font-size: 17px;
    }

    .premium-amenities-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .premium-amenities-card {
        min-height: 145px;
        border-radius: 20px;
    }

    .premium-amenities-card__title {
        font-size: 18px;
    }
}

/* Founder section */

.meet-founder-section {
    padding: 0px 0 100px;
    background-color: #ffffff;
}

.meet-founder-section .container {
    max-width: 920px;
    margin: 0 auto;
    padding: 0 20px;
}

.meet-founder-section__head {
    text-align: center;
    max-width: 540px;
    margin: 0 auto 34px;
}

.meet-founder-section__title {
    margin: 0 0 8px;
    font-size: 34px;
    line-height: 1.2;
    font-weight: 700;
    color: #1d1d1d;
}

.meet-founder-section__subtitle {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
    color: #7e7e7e;
}

.meet-founder-card {
    max-width: 620px;
    margin: 0 auto;
    background: #eefcf7;
    border-radius: 18px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    padding: 28px 28px 24px;
    text-align: center;
}

.meet-founder-card__image {
    width: 82px;
    height: 82px;
    margin: 0 auto 14px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.meet-founder-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.meet-founder-card__name {
    margin: 0 0 6px;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 700;
    color: #173b35;
}

.meet-founder-card__designation {
    margin: 0 0 18px;
    font-size: 16px;
    line-height: 1.5;
    color: #6f7d79;
}

.meet-founder-card__intro,
.meet-founder-card__description {
    text-align: left;
    color: #394744;
}

.meet-founder-card__intro {
    margin-bottom: 14px;
    font-size: 16px;
    line-height: 1.75;
}

.meet-founder-card__description {
    font-size: 12px;
    line-height: 1.8;
}

.meet-founder-card__intro p,
.meet-founder-card__description p {
    margin: 0 0 12px;
}

.meet-founder-card__intro p:last-child,
.meet-founder-card__description p:last-child {
    margin-bottom: 0;
}

.meet-founder-card__highlights {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid rgba(23, 59, 53, 0.10);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.meet-founder-highlight {
    text-align: center;
}

.meet-founder-highlight__icon {
    width: 24px;
    height: 24px;
    margin: 0 auto 8px;
}

.meet-founder-highlight__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.meet-founder-highlight__title {
    margin: 0 0 4px;
    font-size: 11px;
    line-height: 1.4;
    font-weight: 700;
    color: #173b35;
}

.meet-founder-highlight__text {
    margin: 0;
    font-size: 10px;
    line-height: 1.4;
    color: #6f7d79;
}

@media (max-width: 767px) {
    .meet-founder-section {
        padding: 0px 0 72px;
    }

    .meet-founder-section__title {
        font-size: 28px;
    }

    .meet-founder-card {
        padding: 24px 18px 20px;
    }

    .meet-founder-card__name {
        font-size: 21px;
    }

    .meet-founder-card__highlights {
        grid-template-columns: 1fr;
        gap: 14px;
    }
}

.section-animate {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 400ms ease-out, transform 400ms ease-out;
}

.section-animate.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.svg-icon {
  opacity: 0;
  transform: translateY(30px) scale(0.85);
  filter: blur(4px);
  transition:
    opacity 500ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 500ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 500ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity, filter;
}

.svg-icon.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}
.single-post h1 {padding-top: 100px;}

.single-post p {margin-bottom: 20px;}
.entry-meta {margin-bottom: 20px; font-weight: 600;}