* {
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  color: #1a1a2e;
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Georgia", serif;
  font-weight: 600;
  line-height: 1.3;
}

a {
  color: #0077b6;
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover {
  color: #005f92;
}

.navbar {
  background: transparent;
  padding: 1rem 0;
  transition: all 0.3s ease;
}
.navbar.scrolled {
  background: #023e8a;
  padding: 0.5rem 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}
.navbar .navbar-brand {
  font-weight: 600;
  font-size: 1.5rem;
}
.navbar .navbar-brand .brand-text {
  color: #ffffff;
}
.navbar .logo-placeholder {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #0077b6, #00b4d8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.navbar .logo-placeholder i {
  font-size: 1.5rem;
  color: #ffffff;
}
.navbar .nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  transition: color 0.2s ease;
}
.navbar .nav-link:hover, .navbar .nav-link.active {
  color: #90e0ef !important;
}
.navbar .dropdown-menu {
  background: #ffffff;
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 0.5rem 0;
}
.navbar .dropdown-menu .dropdown-item {
  padding: 0.75rem 1.5rem;
  color: #1a1a2e;
  transition: all 0.2s ease;
}
.navbar .dropdown-menu .dropdown-item:hover, .navbar .dropdown-menu .dropdown-item.active {
  background: #f8f9fa;
  color: #0077b6;
}
.navbar .language-switcher .btn-outline-light {
  border-color: rgba(255, 255, 255, 0.5);
  color: #ffffff;
  font-size: 0.9rem;
}
.navbar .language-switcher .btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
}
.navbar .book-btn {
  background: linear-gradient(135deg, #0077b6, #00b4d8);
  border: none;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
}
.navbar .book-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0, 119, 182, 0.4);
}

.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 62, 138, 0.6) 100%);
  z-index: -1;
}
.hero .hero-content {
  text-align: center;
  color: #ffffff;
  padding: 0 1rem;
  max-width: 800px;
}
.hero .hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
  .hero .hero-content h1 {
    font-size: 2.5rem;
  }
}
.hero .hero-content p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}
@media (max-width: 768px) {
  .hero .hero-content p {
    font-size: 1.1rem;
  }
}
.hero .hero-content .hero-btn {
  background: #ffffff;
  color: #0077b6;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.hero .hero-content .hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  color: #005f92;
}
.hero .hero-content .hero-btn i {
  transition: transform 0.3s ease;
}
.hero .hero-content .hero-btn:hover i {
  transform: translateX(5px);
}
.hero .scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: #ffffff;
  font-size: 1.5rem;
  animation: bounce 2s infinite;
  cursor: pointer;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}
.page-header {
  position: relative;
  padding: 10rem 0 5rem;
  background: linear-gradient(135deg, #023e8a, #0077b6);
  text-align: center;
  color: #ffffff;
  overflow: hidden;
}
.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></svg>');
  background-size: 200px;
  opacity: 0.5;
}
.page-header h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  position: relative;
}
@media (max-width: 768px) {
  .page-header h1 {
    font-size: 2rem;
  }
}
.page-header p {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}
.page-header .breadcrumb {
  justify-content: center;
  margin-top: 1.5rem;
  position: relative;
}
.page-header .breadcrumb .breadcrumb-item {
  color: rgba(255, 255, 255, 0.7);
}
.page-header .breadcrumb .breadcrumb-item a {
  color: #ffffff;
}
.page-header .breadcrumb .breadcrumb-item a:hover {
  color: #90e0ef;
}
.page-header .breadcrumb .breadcrumb-item.active {
  color: #90e0ef;
}
.page-header .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.5);
}

section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}
.section-title h2 {
  font-size: 2.5rem;
  color: #1a1a2e;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}
.section-title h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, #0077b6, #00b4d8);
  border-radius: 2px;
}
.section-title p {
  color: #6c757d;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 1.5rem auto 0;
}

.welcome-section {
  background: #f8f9fa;
}
.welcome-section .welcome-content p {
  font-size: 1.1rem;
  line-height: 1.8;
}
.welcome-section .welcome-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.welcome-section .welcome-image img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}
.welcome-section .welcome-image img:hover {
  transform: scale(1.05);
}

.trip-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}
.trip-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  transform: translateY(-10px);
}
.trip-card .trip-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}
.trip-card .trip-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.trip-card .trip-image .trip-duration {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #0077b6;
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
}
.trip-card:hover .trip-image img {
  transform: scale(1.1);
}
.trip-card .trip-content {
  padding: 1.5rem;
}
.trip-card .trip-content h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #1a1a2e;
}
.trip-card .trip-content p {
  color: #6c757d;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.trip-card .trip-content .trip-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #0077b6;
  font-weight: 600;
  transition: all 0.2s ease;
}
.trip-card .trip-content .trip-btn i {
  transition: transform 0.2s ease;
}
.trip-card .trip-content .trip-btn:hover {
  color: #005f92;
}
.trip-card .trip-content .trip-btn:hover i {
  transform: translateX(5px);
}

.why-us-section {
  background: linear-gradient(135deg, #023e8a, #0077b6);
  color: #ffffff;
}
.why-us-section .section-title h2 {
  color: #ffffff;
}
.why-us-section .section-title h2::after {
  background: linear-gradient(to right, #ffffff, #90e0ef);
}
.why-us-section .why-us-card {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  transition: all 0.3s ease;
  height: 100%;
}
.why-us-section .why-us-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}
.why-us-section .why-us-card .icon-box {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-us-section .why-us-card .icon-box i {
  font-size: 2rem;
  color: #90e0ef;
}
.why-us-section .why-us-card h4 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}
.why-us-section .why-us-card p {
  opacity: 0.9;
  line-height: 1.7;
}

.gallery-section {
  background: #f8f9fa;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

.gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item .gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 119, 182, 0.8);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}
.gallery-item .gallery-overlay i {
  color: #ffffff;
  font-size: 2rem;
  transform: scale(0.5);
  transition: transform 0.3s ease;
}
.gallery-item:hover img {
  transform: scale(1.1);
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-item:hover .gallery-overlay i {
  transform: scale(1);
}

.trip-detail .trip-info {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  margin-bottom: 2rem;
}
.trip-detail .trip-info .info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.trip-detail .trip-info .info-item:last-child {
  border-bottom: none;
}
.trip-detail .trip-info .info-item .info-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #0077b6, #00b4d8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trip-detail .trip-info .info-item .info-icon i {
  color: #ffffff;
  font-size: 1.2rem;
}
.trip-detail .trip-info .info-item .info-content h5 {
  font-size: 0.9rem;
  color: #6c757d;
  margin-bottom: 0.25rem;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  font-weight: 400;
}
.trip-detail .trip-info .info-item .info-content p {
  margin: 0;
  font-weight: 600;
  color: #1a1a2e;
}
.trip-detail .highlights-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.trip-detail .highlights-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
  color: #1a1a2e;
}
.trip-detail .highlights-list li i {
  color: #00b4d8;
  font-size: 1.2rem;
}
.trip-detail .book-sidebar {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  position: sticky;
  top: 100px;
}
.trip-detail .book-sidebar h4 {
  margin-bottom: 1.5rem;
  text-align: center;
}
.trip-detail .book-sidebar .book-btn-large {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, #0077b6, #00b4d8);
  color: #ffffff;
  padding: 1rem;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
}
.trip-detail .book-sidebar .book-btn-large:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0, 119, 182, 0.4);
  color: #ffffff;
}
.trip-detail .book-sidebar .contact-info {
  margin-top: 1.5rem;
  text-align: center;
}
.trip-detail .book-sidebar .contact-info p {
  margin: 0.5rem 0;
  color: #6c757d;
}
.trip-detail .book-sidebar .contact-info p a {
  color: #0077b6;
  font-weight: 500;
}

.trip-options .option-card {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
}
.trip-options .option-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}
.trip-options .option-card .option-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, #0077b6, #00b4d8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.trip-options .option-card .option-icon i {
  font-size: 2rem;
  color: #ffffff;
}
.trip-options .option-card h4 {
  margin-bottom: 1rem;
  color: #1a1a2e;
}
.trip-options .option-card p {
  color: #6c757d;
  line-height: 1.7;
}

.form-section {
  background: #f8f9fa;
}

.booking-form,
.contact-form {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 2.5rem;
}
.booking-form .form-label,
.contact-form .form-label {
  font-weight: 500;
  color: #1a1a2e;
  margin-bottom: 0.5rem;
}
.booking-form .form-control,
.booking-form .form-select,
.contact-form .form-control,
.contact-form .form-select {
  padding: 0.75rem 1rem;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  transition: all 0.2s ease;
}
.booking-form .form-control:focus,
.booking-form .form-select:focus,
.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: #0077b6;
  box-shadow: 0 0 0 3px rgba(0, 119, 182, 0.1);
}
.booking-form textarea.form-control,
.contact-form textarea.form-control {
  min-height: 150px;
  resize: vertical;
}
.booking-form .form-check,
.contact-form .form-check {
  padding-left: 2rem;
}
.booking-form .form-check .form-check-input,
.contact-form .form-check .form-check-input {
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.15rem;
  margin-left: -2rem;
}
.booking-form .form-check .form-check-input:checked,
.contact-form .form-check .form-check-input:checked {
  background-color: #0077b6;
  border-color: #0077b6;
}
.booking-form .form-check .form-check-input:focus,
.contact-form .form-check .form-check-input:focus {
  box-shadow: 0 0 0 3px rgba(0, 119, 182, 0.1);
}
.booking-form .form-check .form-check-label,
.contact-form .form-check .form-check-label {
  color: #1a1a2e;
}
.booking-form .submit-btn,
.contact-form .submit-btn {
  background: linear-gradient(135deg, #0077b6, #00b4d8);
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  transition: all 0.3s ease;
}
.booking-form .submit-btn:hover,
.contact-form .submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0, 119, 182, 0.4);
}

.contact-info-card {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 2.5rem;
}
.contact-info-card .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-info-card .contact-item:last-child {
  margin-bottom: 0;
}
.contact-info-card .contact-item .contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #0077b6, #00b4d8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-card .contact-item .contact-icon i {
  color: #ffffff;
  font-size: 1.2rem;
}
.contact-info-card .contact-item .contact-content h5 {
  font-size: 1rem;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  margin-bottom: 0.25rem;
  color: #1a1a2e;
}
.contact-info-card .contact-item .contact-content p {
  margin: 0;
  color: #6c757d;
}
.contact-info-card .contact-item .contact-content p a {
  color: #0077b6;
}
.contact-info-card .contact-item .contact-content p a:hover {
  color: #005f92;
}

.map-container {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  height: 300px;
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.alert {
  border-radius: 15px;
  padding: 1.25rem 1.5rem;
  border: none;
}
.alert.alert-success {
  background: #d1e7dd;
  color: #0f5132;
}
.alert.alert-danger {
  background: #f8d7da;
  color: #842029;
}

.footer {
  background: #023e8a;
  color: #ffffff;
  padding: 4rem 0 0;
}
.footer .footer-brand .logo-placeholder {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #0077b6, #00b4d8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer .footer-brand .logo-placeholder i {
  font-size: 1.5rem;
  color: #ffffff;
}
.footer .footer-brand .brand-text {
  font-size: 1.3rem;
  font-weight: 600;
}
.footer .footer-desc {
  opacity: 0.8;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.footer .social-links {
  display: flex;
  gap: 1rem;
}
.footer .social-links .social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: all 0.2s ease;
}
.footer .social-links .social-link:hover {
  background: #0077b6;
  transform: translateY(-3px);
}
.footer .footer-title {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  font-weight: 600;
}
.footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer .footer-links li {
  margin-bottom: 0.75rem;
}
.footer .footer-links li a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.2s ease;
}
.footer .footer-links li a:hover {
  color: #90e0ef;
  padding-left: 5px;
}
.footer .footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer .footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.7);
}
.footer .footer-contact li i {
  color: #90e0ef;
  margin-top: 0.25rem;
}
.footer .footer-divider {
  border-color: rgba(255, 255, 255, 0.1);
  margin: 3rem 0 0;
}
.footer .footer-bottom {
  text-align: center;
  padding: 1.5rem 0;
}
.footer .footer-bottom p {
  margin: 0;
  opacity: 0.7;
  font-size: 0.9rem;
}

.bg-light-custom {
  background: #f8f9fa;
}

.text-primary {
  color: #0077b6 !important;
}

@media (max-width: 992px) {
  .navbar .book-btn {
    margin-top: 1rem;
    margin-left: 0;
  }
  section {
    padding: 3rem 0;
  }
  .section-title h2 {
    font-size: 2rem;
  }
}
@media (max-width: 768px) {
  .hero .hero-content h1 {
    font-size: 2rem;
  }
  .page-header {
    padding: 8rem 0 3rem;
  }
  .trip-detail .book-sidebar {
    position: static;
    margin-top: 2rem;
  }
}
.hero-video-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #023e8a 0%, #0077b6 50%, #00b4d8 100%);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
  z-index: -2;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.cta-section {
  background: linear-gradient(135deg, #0077b6, #00b4d8);
  color: #ffffff;
  text-align: center;
  padding: 4rem 0;
}
.cta-section h2 {
  color: #ffffff;
  margin-bottom: 1rem;
}
.cta-section p {
  opacity: 0.9;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}
.cta-section .cta-btn {
  background: #ffffff;
  color: #0077b6;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.cta-section .cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  color: #005f92;
}

.inclusions-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.inclusions-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.inclusions-list li:last-child {
  border-bottom: none;
}
.inclusions-list li i {
  color: #00b4d8;
  font-size: 1.2rem;
}

/*# sourceMappingURL=style.css.map */
