 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 @font-face {
     font-family: 'prompt';
     src: url('../fonts/Prompt-Bold.ttf') format('truetype');
 }

 body {
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
     line-height: 1.6;
     color: #333;
     width: 100%;
 }

 html,
 body {
     overflow-x: visible;
 }

 /* Hero Banner */
 .hero-banner {
     background: linear-gradient(135deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
         url('../img/package page/hero.jpg') center/cover;
     height: 70vh;
     display: flex;
 }

 /* Main Content */
 .container {
     margin-top: 20px;
     margin-left: 5%;
     margin-right: 5%;
 }

 /* path */
 .path {
     background-color: white;
     padding: 20px 0px;
     display: flex;
     align-items: center;
     gap: 15px;
     font-size: 13px;
     font-weight: 600;
     text-transform: uppercase;
     letter-spacing: 0.5px;

 }

 .path a {
     color: #282828;
     text-decoration: none;
     margin-left: -1%;
 }

 .path-separator {
     color: #000000;
     font-weight: 300;
 }

 h1 {
     font-family: 'prompt';
     margin-bottom: 30px;
     text-transform: uppercase;
     font-size: 36px;
 }

 /* Packages Section */
 .packages-title {
     font-size: 42px;
     font-weight: 700;
     margin-bottom: 30px;
     text-transform: uppercase;
     letter-spacing: 2px;
 }

 .packages-description {
     font-size: 15px;
     color: #666;
     line-height: 1.8;
     margin-bottom: 60px;
 }

 /* Packages Grid */
 .packages-grid {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 40px;
     margin-left: 10%;
     margin-right: 10%;
     margin-bottom: 60px;
 }

 .package-card {
     background: white;
     border-radius: 8px;
     overflow: hidden;
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
     transition: transform 0.3s, box-shadow 0.3s;
 }

 .package-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
 }

 .package-image-container {
     position: relative;
     height: 300px;
     overflow: hidden;
 }

 .package-image {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.3s;
 }

 .package-card:hover .package-image {
     transform: scale(1.05);
 }

 .price-badge {
     position: absolute;
     top: 15px;
     right: 15px;
     background-color: #059669;
     color: white;
     padding: 8px 14px;
     border-radius: 20px;
     font-size: 12px;
     font-weight: 600;
 }

 .duration-badge {
     position: absolute;
     bottom: 15px;
     left: 15px;
     background-color: white;
     color: #333;
     padding: 6px 12px;
     border-radius: 4px;
     font-size: 12px;
     font-weight: 600;
 }

 .package-content {
     padding: 30px;
 }

 .package-title {
     font-family: 'prompt';
     font-size: 20px;
     font-weight: 700;
     margin-bottom: 15px;
     color: #1a1a1a;
 }

 .package-short-desc {
     font-size: 14px;
     color: #666;
     margin-bottom: 25px;
     line-height: 1.6;
 }

 .highlights-label {
     font-size: 12px;
     font-weight: 700;
     color: #333;
     text-transform: uppercase;
     margin-bottom: 12px;
     letter-spacing: 0.5px;
 }

 .highlights-list {
     list-style: none;
     margin-bottom: 25px;
 }

 .highlights-list li {
     font-size: 13px;
     color: #666;
     padding: 6px 0;
     padding-left: 20px;
     position: relative;
 }

 .highlights-list li::before {
     content: '✓';
     position: absolute;
     left: 0;
     color: #1abc9c;
     font-weight: bold;
 }

 .package-includes {
     display: flex;
     flex-wrap: wrap;
     gap: 12px;
     margin-bottom: 25px;
 }

 .include-tag {
     background-color: #9eebbd4e;
     color: #059669;
     padding: 6px 12px;
     border-radius: 20px;
     font-size: 12px;
     font-weight: 600;
 }

 .book-package-btn {
     display: block;
     width: 100%;
     padding: 12px;
     background-color: #059669;
     color: white;
     border: none;
     border-radius: 6px;
     font-size: 14px;
     font-weight: 600;
     text-decoration: none;
     text-align: center;
     cursor: pointer;
     transition: background-color 0.3s;
 }

 .book-package-btn:hover {
     background-color: #047857;
 }

 /* Custom Package CTA */
 .custom-package-cta {
     background: #059669;
     color: white;
     padding: 60px 40px;
     border-radius: 8px;
     text-align: center;
     margin: 80px 0;
 }

 .custom-package-cta h2 {
     font-size: 28px;
     font-weight: 700;
     margin-bottom: 15px;
 }

 .custom-package-cta p {
     font-size: 16px;
     margin-bottom: 30px;
     opacity: 0.95;
 }

 .custom-package-btn {
     display: block;
     background-color: white;
     color: #059669;
     padding: 12px 30px;
     border: none;
     border-radius: 6px;
     font-size: 14px;
     font-weight: 600;
     cursor: pointer;
     text-decoration: none;
     text-align: center;
     transition: all 0.3s;
     display: inline-block;
 }

 .custom-package-btn:hover {
     background-color: #f0f0f0;
     transform: translateY(-2px);
 }

 @media (max-width: 768px) {
     .nav-links {
         display: none;
     }

     .container {
         padding: 0 20px;
         margin-left: 3%;
         margin-right: 3%;
     }

     .packages-grid {
         grid-template-columns: 1fr;
         gap: 30px;
         margin-left: 5%;
         margin-right: 5%;
     }

     .packages-title {
         font-size: 28px;
     }

     h1 {
         font-size: 28px;
     }

     .hero-banner {
         height: 50vh;
         width: 100%;
     }

     .footer-content {
         grid-template-columns: 1fr;
         gap: 30px;
     }

     .custom-package-cta {
         padding: 40px 20px;
     }

     .custom-package-cta h2 {
         font-size: 22px;
     }

     .path {
         font-size: 12px;
         gap: 12px;
     }

     .packages-description {
         font-size: 14px;
     }
 }

 @media (max-width: 480px) {
     .container {
         margin-left: 2%;
         margin-right: 2%;
     }

     h1 {
         font-size: 24px;
         margin-bottom: 20px;
     }

     .packages-title {
         font-size: 24px;
     }

     .packages-grid {
         margin-left: 0;
         margin-right: 0;
         gap: 25px;
     }

     .package-content {
         padding: 25px 20px;
     }

     .package-title {
         font-size: 18px;
     }

     .package-short-desc {
         font-size: 13px;
     }

     .highlights-list li {
         font-size: 12px;
     }

     .custom-package-cta {
         padding: 35px 18px;
         margin: 60px 0;
     }

     .custom-package-cta h2 {
         font-size: 20px;
     }

     .custom-package-cta p {
         font-size: 14px;
     }

     .path {
         font-size: 11px;
         gap: 10px;
     }

     .hero-banner {
         height: 40vh;
         width: 100%;
     }
 }

 /* iPhone SE (375px) specific */
 @media (max-width: 375px) {
     h1 {
         font-size: 22px;
     }

     .packages-title {
         font-size: 22px;
     }

     .packages-description {
         font-size: 13px;
     }

     .package-content {
         padding: 20px 15px;
     }

     .package-title {
         font-size: 17px;
     }

     .package-short-desc {
         font-size: 12px;
     }

     .highlights-label {
         font-size: 11px;
     }

     .highlights-list li {
         font-size: 11px;
     }

     .include-tag {
         font-size: 11px;
         padding: 5px 10px;
     }

     .book-package-btn {
         font-size: 13px;
         padding: 11px;
     }

     .custom-package-cta h2 {
         font-size: 18px;
     }

     .custom-package-cta p {
         font-size: 13px;
     }

     .path {
         font-size: 10px;
         gap: 8px;
     }
 }