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

body{
  color:#333;
  scroll-behavior:smooth;
}
p{font-size:1.2rem;margin-top:1rem;}
.container{
  width:90%;
  max-width:1200px;
  margin:auto;
}
h1{font-size:2rem;}
h2{font-size:1.5rem;}

.font-size-1rem{
  font-size:1rem;
}
header{
  position:fixed;
  width:100%;
  background:white;
  box-shadow:0 2px 10px rgba(0,0,0,0.05);
  z-index:1000;
  top:0;
}

.phone {
  font-size: 15px;
  color: white !important;
  animation: pulse 1.5s infinite;
  text-shadow: 0 0 10px white, 0 0 40px white;
  
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}


.nav-container{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:0px 0;
}

nav a {
  text-decoration: none;
  color: #333;
  padding: 8px 20px;
  transition: 0.3s;
}

nav a.active {
  color: #fff;
  background-color: #7f5d44;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

.btn-nav{
  background:#c29963;
  color:white;
  border-radius:20px;
  padding:7px;
}

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

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide.active {
  opacity: 1;
}

/* Overlay Content */
.hero-overlay {
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
}

.hero::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  top: 0;
  left: 0;
  z-index: 1;
}


.hero-overlay{
  padding:40px;
  color:white;
  border-radius:12px;
}

.top-2rem{
  margin-top:2rem;
}
.top-4rem{
  margin-top:4rem;
}
.btn-primary{
  background:#c29963;
  color:white;
  padding:12px 30px;
  border-radius:25px;
  text-decoration:none;
  display:inline-block;
  margin-top:20px;
  border:none;
  cursor:pointer;
}

.section{
  padding:100px 0;
  text-align:center;
}

.grid{
  display:grid;
  gap:25px;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  margin-top:40px;
}

.card, .location-card{
  background:white;
  padding:20px;
  border-radius:12px;
  box-shadow:0 5px 20px rgba(0,0,0,0.05);
  transition:0.3s;
  font-size: 1.3rem;
  
}

.location-card img{
  width:100%;
  border-radius:12px;
  margin-bottom:15px;
}

.card:hover, .location-card:hover{
  transform:translateY(-8px);
}




@keyframes fadeScale {
  to {
    opacity: 1;
    transform: scale(1);
  }
}


.btn-learn {
  display: inline-block;
  margin-top: 12px;
  padding: 8px 18px;
  background-color: #c39b67;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 14px;
  transition: 0.3s ease;
}

.btn-learn:hover {
  background-color: #775338;
}


/* ================= FAQ ================= */
.faq-question {
  width: 100%;
  background: #fff;
  border: none;
  text-align: left;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
 
}

.faq-answer {
  display: none;
  padding: 0 15px 15px;
}
.faq-item{margin-top:1rem;}
.faq-item.active .faq-answer {
  display: block;
}

.arrow {
  transition: transform 0.3s ease;
}

.faq-item.active .arrow {
  transform: rotate(180deg);
}


form{
  max-width:500px;
  margin:auto;
  display:flex;
  flex-direction:column;
}

form input, form textarea{
  margin-bottom:15px;
  padding:12px;
  border-radius:8px;
  border:1px solid #ddd;
}

footer{
  background:#111;
  color:white;
  padding:20px;
 
}

/* Mobile */
@media(max-width:768px){
  nav{
    position:absolute;
    top:70px;
    right:0;
    background:white;
    flex-direction:column;
    display:none;
    width:200px;
    padding:20px;
  }

  nav.active{
    display:flex;
  }

  .hamburger{
    display:block;
  }
}  

/*======== GALLERY GRID ================= */

.gallery{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:15px;
margin:20px 0;
}

.gallery img{
width:100%;
height:200px;
object-fit:cover;
border-radius:8px;
cursor:pointer;
transition:0.3s;
}

.gallery img:hover{
transform:scale(1.05);
}

/* ================= LIGHTBOX ================= */

#lightbox{
position:fixed;
inset:0;
background:rgba(0,0,0,0.95);
display:none;
justify-content:center;
align-items:center;
z-index:5000;
padding:20px;
}

#lightbox img{
max-width:95%;
max-height:85vh;
border-radius:10px;
box-shadow:0 5px 20px rgba(0,0,0,0.5);
}

/* Close Button */
#lightbox .close{
position:absolute;
top:20px;
right:25px;
font-size:35px;
color:white;
cursor:pointer;
z-index:10;
}

/* Navigation Buttons */
.nav{
position:absolute;
top:50%;
transform:translateY(-50%);
background:rgba(255,255,255,0.2);
border:none;
color:white;
font-size:30px;
padding:10px 15px;
cursor:pointer;
border-radius:50%;
}

.prev{ left:20px; }
.next{ right:20px; }

.nav:hover{
background:rgba(255,255,255,0.4);
}

/* ================= MOBILE OPTIMIZATION ================= */

@media(max-width:768px){

.gallery img{
  height:150px;
}

.nav{
  font-size:24px;
  padding:8px 12px;
}

#lightbox img{
  max-height:70vh;
}

#lightbox .close{
  font-size:30px;
  top:15px;
  right:20px;
}
}


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

body{
  background:#f8f4ea;
  color:#333;
}

/* ================= HEADER ================= */


/* ================= TWO COLUMN LAYOUT ================= */
.main-container{
  display:flex;
  max-width:1300px; /* increased width */
  margin:50px auto;
  gap:40px;
  padding:0 20px;
}
.left-content {
  flex: 0 0 65%;
}

.right-form {
  flex: 0 0 35%;       /* 30% width */
  display: flex;       /* necessary for sticky child */
  flex-direction: column;
  align-items: flex-start;
}

.form-box {
  width: 100%;                 /* make form fill container */
  position: sticky;            /* make sticky */
  top: 100px;                  /* distance from top of viewport */
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Room Cards */
.room-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:20px;
  margin:20px 0;
}

.room-box{
  background:white;
  padding:15px;
  border-radius:8px;
  box-shadow:0 4px 10px rgba(0,0,0,0.08);
}

.price{
  color:#c29963;
  font-weight:600;
  margin-top:8px;
}

/* Amenities */
.amenities{
  margin-top:15px;
}

.amenities li{
  margin-bottom:8px;
}

/* ================= GALLERY GRID ================= */

.gallery{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:15px;
  margin:20px 0;
}

.gallery img{
  width:100%;
  height:200px;
  object-fit:cover;
  border-radius:8px;
  cursor:pointer;
  transition:0.3s;
}

.gallery img:hover{
  transform:scale(1.05);
}

/* ================= LIGHTBOX ================= */

#lightbox{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.95);
  display:none;
  justify-content:center;
  align-items:center;
  z-index:5000;
  padding:20px;
}

#lightbox img{
  max-width:95%;
  max-height:85vh;
  border-radius:10px;
  box-shadow:0 5px 20px rgba(0,0,0,0.5);
}

/* Close Button */
#lightbox .close{
  position:absolute;
  top:20px;
  right:25px;
  font-size:35px;
  color:white;
  cursor:pointer;
  z-index:10;
}

/* Navigation Buttons */
.nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  background:rgba(255,255,255,0.2);
  border:none;
  color:white;
  font-size:30px;
  padding:10px 15px;
  cursor:pointer;
  border-radius:50%;
}

.prev{ left:20px; }
.next{ right:20px; }

.nav:hover{
  background:rgba(255,255,255,0.4);
}

/* ================= MOBILE OPTIMIZATION ================= */

@media(max-width:768px){

  .gallery img{
    height:150px;
  }

  .nav{
    font-size:24px;
    padding:8px 12px;
  }

  #lightbox img{
    max-height:70vh;
  }

  #lightbox .close{
    font-size:30px;
    top:15px;
    right:20px;
  }
}

@media(max-width:900px){
  .main-container{
    flex-direction: column;
  }

  .right-form{
    order: -1; /* show form above content */
    flex: 100%; 
  }

  .form-box{
    position: relative; /* disable sticky on mobile */
    top: 0;
  }

  .left-content{
    flex: 100%;
  }
}


.form-box h3{
  margin-bottom:15px;
}

.form-box input,
.form-box select{
  width:100%;
  padding:10px;
  margin-bottom:12px;
  border:1px solid #ccc;
  border-radius:5px;
}

.form-box button{
  width:100%;
  padding:10px;
  background:#c29963;
  color:white;
  border:none;
  border-radius:5px;
  cursor:pointer;
  font-size:1rem;
}

.form-box button:hover{
  background:#431400;
}

/* FAQ */
.faq-item{
  background:white;
  padding:15px;
  margin-bottom:10px;
  border-radius:6px;
  cursor:pointer;
  box-shadow:0 3px 8px rgba(0,0,0,0.05);
}

.faq-answer{
  display:none;
  margin-top:10px;
  font-size:16px;
}

/* ================= FOOTER ================= */

footer{
background:#431400;
color:#ccc;
padding:40px 20px;
margin-top:50px;
}

.footer-container{
max-width:1200px;
margin:auto;
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:25px;
}

footer h4{
color:white;
margin-bottom:15px;
}

footer a{
display:block;
color:#ccc;
text-decoration:none;
margin-bottom:8px;
}

footer a:hover{
color:#c29963;
}

.footer-bottom{
text-align:center;
margin-top:20px;
border-top:1px solid #333;
padding-top:15px;
font-size:14px;
}

.price-display{
  background:#f2eade;
  padding:15px;
  border-radius:8px;
  text-align:center;
  margin-bottom:15px;
  border:1px solid #c29963;
}

.price-display h4{
  font-size:14px;
  color:#c29963;
  margin-bottom:5px;
  font-weight:500;
}

.price-display p{
  font-size:20px;
  font-weight:600;
  color:#7f5d44;
  margin:0;
}



/* Responsive */
@media(max-width:900px){
  .main-container{
    flex-direction:column;
  }
  .form-box{
    position:relative;
    top:0;
  }
}



/* ================= CONTACT SECTION ================= */
.contact-container{
max-width:1300px;
margin:60px auto;
padding:0 20px;
display:flex;
gap:40px;
}

.contact-info{
flex:40%;
}

.contact-info h3{
margin-bottom:15px;
color:#c29963;
}

.contact-info p{
margin-bottom:12px;
font-size:15px;
}

.contact-card a{
text-decoration:none;
color:#555;
}

.contact-form{
flex:60%;
background:white;
padding:30px;
border-radius:10px;
box-shadow:0 4px 15px rgba(0,0,0,0.08);
}

.contact-form h3{
margin-bottom:20px;
text-align:center;
}

.contact-form input,
.contact-form textarea{
width:100%;
padding:12px;
margin-bottom:15px;
border:1px solid #ccc;
border-radius:6px;
font-size:14px;
}

.contact-form select{
  width:100%;
  padding:10px;
  margin-bottom:12px;
  border:1px solid #ccc;
  border-radius:5px;
}

.contact-form textarea{
resize:none;
height:120px;
}

.contact-form button{
width:100%;
padding:12px;
background:#c29963;
color:white;
border:none;
border-radius:6px;
cursor:pointer;
font-weight:500;
}

.contact-form button:hover{
background:#084298;
}

#formMessage{
margin-top:10px;
font-weight:500;
}

/* ================= MAP ================= */
.map{
margin-top:40px;
}

.map iframe{
width:100%;
height:350px;
border:0;
border-radius:10px;
}



/* ================= CONTACT CARDS ================= */

.contact-cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:20px;
margin-top:20px;
}

.contact-card{
background:white;
padding:20px;
border-radius:12px;
text-align:center;
box-shadow:0 5px 15px rgba(0,0,0,0.08);
transition:0.3s;
}

.contact-card:hover{
transform:translateY(-5px);
box-shadow:0 8px 20px rgba(0,0,0,0.12);
}

.contact-card .icon{
font-size:30px;
margin-bottom:10px;
}

.contact-card h4{
margin-bottom:8px;
color:#c29963;
font-size:16px;
}

.contact-card p{
font-size:16px;
color:#555;
line-height:1.5;
}



/* ================= RESPONSIVE ================= */
@media(max-width:900px){
.contact-container{
  flex-direction:column;
}
}

.whatsapp-btn{
display:block;
margin-top:12px;
padding:12px;
text-align:center;
background:#25D366;
color:#fff;
text-decoration:none;
font-weight:600;
border-radius:6px;
transition:0.3s;
}

.whatsapp-btn:hover{
background:#1ebe5d;
}

.mobile-block{
margin-top:12px;
padding:12px;
background:#fff;
text-align:center;
font-weight:600;
border-radius:6px;
color:#7f5d44;
font-size:1.5rem;
border:1px solid #ddd;
}


/* Dropdown Container */
.dropdown {
position: relative;
display: inline-block;
margin-top:1rem;
}

/* Dropdown Button */
.dropbtn {
cursor: pointer;
}

/* Dropdown Content (Hidden by default) */
.dropdown-content {
display: none;
position: absolute;
background-color: #fff;
min-width: 220px;
box-shadow: 0 8px 16px rgba(0,0,0,0.1);
z-index: 999;
border-radius: 6px;
overflow: hidden;
}

/* Dropdown Links */
.dropdown-content a {
display: block;
padding-left: 6px;
text-decoration: none;
color: #333;
font-size: 14px;
width:auto;
}

.dropdown-content a:hover {
background-color: #f5f5f5;
}

.dropdown-content {
display: none;
position: absolute;
background-color: #fff;
min-width: 220px;
box-shadow: 0 8px 16px rgba(0,0,0,0.1);
z-index: 999;
border-radius: 6px;
overflow: hidden;
}

/* Show when active */
.dropdown-content.show {
display: block;
}

/* Initial hidden state */


/* When visible */
.show {
  opacity: 1;
  transform: translateY(0);
}


.reveal {
opacity: 0;
transform: translateY(50px);
transition: all 3s ease;
-webkit-transition: all 3s ease;
-moz-transition: all 3s ease;
-ms-transition: all 3s ease;
-o-transition: all 3s ease;
}

.reveal.active {
opacity: 1;
transform: translateY(0);
}


/* Popup Background */
#popupForm {
display: none;
position: fixed;
z-index: 999;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: rgba(0,0,0,0.6);
padding: 15px; /* Prevent touching screen edges */
box-sizing: border-box;
}

/* Popup Container */
.form-container {
background-color: #fff;
width: 100%;
max-width: 750px;
border-radius: 10px;
position: relative;
margin: auto;
top: 50%;
transform: translateY(-50%);
font-family: Arial, sans-serif;
display: flex;
overflow: hidden;
}

/* Left Image Section */
.image-section {
width: 50%;
}

.image-section img {
width: 100%;
height: 100%;
object-fit: cover;
}

/* Right Form Section */
.form-section {
width: 50%;
padding: 25px;
background: #fff;
box-shadow: -5px 0 15px rgba(0, 0, 0, 0.15);
margin-bottom:40px;
}

.form-section h2 {
text-align: center;
margin-bottom: 15px;
}

/* Form Fields */
.form-section input,
.form-section textarea,
.form-section select {
width: 100%;
padding: 10px;
margin: 8px 0;
border-radius: 5px;
border: 1px solid #ccc;
font-size: 14px;
}

.form-section button {
width: 100%;
padding: 12px;
background-color: #c59e68;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
font-size: 15px;
}

.form-section button:hover {
background-color: #291004;
}

/* Close Button */
.close-btn {
position: absolute;
right: 15px;
top: 10px;
cursor: pointer;
font-size: 30px;
font-weight: bold;
color: rgb(29, 6, 6);
}

/* ===================== */
/* 📱 MOBILE RESPONSIVE  */
/* ===================== */

@media (max-width: 768px) {

.form-container {
  flex-direction: column;
  max-height: 90vh;
  overflow-y: auto;
}
.hero-overlay{
  top:20%;
}
.image-section,
.form-section {
  width: 100%;
}

.image-section img {
  height: 200px;
}

.form-section {
  box-shadow: none;
}
}
@media (min-width: 320px) and (max-width: 430px) {
/* Your CSS here */
.form-container {
  flex-direction: column;
  max-height: 90vh;
  overflow-y: auto;
  margin-top:3rem;
}

}

.thank-you-section{margin: 120px 0 0 0;}
.thank-you-section img{width: 110px; display: table; margin: 0 auto 30px;}
.thank-you-section h2{background: linear-gradient(330deg,#ff9000 0,red 50%,#edc12d 100%); background: -moz-linear-gradient(330deg,#ff9000 0,red 50%,#0a00b2 100%);  background: -webkit-linear-gradient(330deg,#ff9000 0,red 50%,#0a00b2 100%); background-image: -ms-linear-gradient(330deg,#ff9000 0,red 50%,#0a00b2 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; font-size: 40px; line-height: 52px; font-weight: 400; text-align: center; margin-bottom: 35px;}
.thank-you-section p{text-align: center; font-size: 15px; color: #000; font-weight: 500;}
.thank-you-section p a{background: #e89c04; padding: 8px 13px; color: #fff; margin-left: 8px; text-decoration: none; font-size: 16px;}
.thank-you-section p a i{vertical-align: middle; margin-right: 1px; font-size: 21px; margin-top: 1px;}


/* Container */
.floating-buttons {
position: fixed;
bottom: 20px;
right: 20px;
display: flex;
flex-direction: column;
gap: 15px;
z-index: 999;
}

/* Common Button Style */
.float {
width: 40px;
height: 40px;
border-radius: 50%;
color: #fff;
text-align: center;
font-size: 26px;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 2px 2px 8px rgba(0,0,0,0.3);
text-decoration: none;
transition: 0.3s ease;
}

/* WhatsApp */
.whatsapp {
background-color: #25D366;
}

.whatsapp:hover {
background-color: #1ebe5d;
transform: scale(1.1);
}

/* Call */
.call {
background-color: #b39304;
}

.call:hover {
background-color: #f5cd18;
transform: scale(1.1);
}



.loading {position: fixed; z-index: 9999; height: 2em; width: 2em; overflow: show; margin: auto; top: 0; left: 0; bottom: 0; right: 0; display: none;}
.loading:before {content: ''; display: block; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.3);}
.loading:not(:required) {font: 0/0 a; color: transparent; text-shadow: none; background-color: transparent; border: 0;}
.loading:not(:required):after {content: ''; display: block; font-size: 10px; width: 1em; height: 1em; margin-top: -0.5em; -webkit-animation: spinner 1500ms infinite linear; -moz-animation: spinner 1500ms infinite linear; -ms-animation: spinner 1500ms infinite linear; -o-animation: spinner 1500ms infinite linear; animation: spinner 1500ms infinite linear; border-radius: 0.5em; -webkit-box-shadow: rgba(0, 0, 0, 0.75) 1.5em 0 0 0, rgba(0, 0, 0, 0.75) 1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) 0 1.5em 0 0, rgba(0, 0, 0, 0.75) -1.1em 1.1em 0 0, rgba(0, 0, 0, 0.5) -1.5em 0 0 0, rgba(0, 0, 0, 0.5) -1.1em -1.1em 0 0, rgba(0, 0, 0, 0.75) 0 -1.5em 0 0, rgba(0, 0, 0, 0.75) 1.1em -1.1em 0 0; box-shadow: rgba(0, 0, 0, 0.75) 1.5em 0 0 0, rgba(0, 0, 0, 0.75) 1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) 0 1.5em 0 0, rgba(0, 0, 0, 0.75) -1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) -1.5em 0 0 0, rgba(0, 0, 0, 0.75) -1.1em -1.1em 0 0, rgba(0, 0, 0, 0.75) 0 -1.5em 0 0, rgba(0, 0, 0, 0.75) 1.1em -1.1em 0 0;}

@-webkit-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-o-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}



.privacy-policy-section{padding: 120px 0 40px 0; border-bottom: 1px solid #e0e0e0;}
.privacy-policy-section h1{font-size: 30px; font-weight: 600; color: #000; margin-bottom: 15px;}
.privacy-policy-section span{font-weight: 600; font-size: 15px; color: #000; display: block; margin-bottom: 20px;}
.privacy-policy-section h4{font-size: 18px; font-weight: 600; color: #000; margin-bottom: 11px; padding-top: 15px;}
.privacy-policy-section p{font-size: 14px; font-weight: 500; color: #333; line-height: 28px; margin-bottom: 15px;}
.privacy-policy-section p a{text-decoration: underline; color: #0000ff;}
.privacy-policy-section h2{font-size: 27px; font-weight: 600; color: #000; margin-bottom: 10px; padding-top: 15px;}
.privacy-policy-section ul{margin: 0 0 6px 20px; padding: 0;}
.privacy-policy-section ul li{font-size: 14px; color: #333; margin-bottom: 14px; font-weight: 500;}