.package-section {
         margin-bottom: 40px;
     }
     .package-section h2 {
         font-size: 2em;
         color: #333;
         margin-bottom: 20px;
     }
     .package-list {
         display: grid;
         grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
         gap: 20px;
     }
     .package-list article {
         background-color: #fff;
         border: 1px solid #e0e0e0;
         border-radius: 8px;
         padding: 20px;
         box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
         transition: transform 0.3s ease, box-shadow 0.3s ease;
     }
     .package-list article:hover {
         transform: translateY(-5px);
         box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
     }
     .package-list h3 {
         font-size: 1.5em;
         margin: 0 0 10px;
         color: #222;
     }
     .package-list h3 a {
         text-decoration: none;
         color: inherit;
     }
     .package-list h3 a:hover {
         color: #007bff;
     }
     .package-list .entry-content {
         font-size: 1em;
         color: #555;
         line-height: 1.6;
     }

     /* Single Package Styles */
     .package-single {
         max-width: 800px;
         margin: 40px auto;
         background-color: #fff;
         border: 1px solid #e0e0e0;
         border-radius: 8px;
         padding: 30px;
         box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
     }
     .package-single .entry-header {
         margin-bottom: 20px;
     }
     .package-single .entry-title {
         font-size: 2.5em;
         color: #222;
         margin: 0;
     }
     .package-single .package-categories {
         font-size: 1em;
         color: #666;
         margin-top: 10px;
     }
     .package-single .package-thumbnail {
         margin-bottom: 20px;
     }
     .package-single .package-image {
         width: 100%;
         height: auto;
         border-radius: 8px;
         object-fit: cover;
     }
     .package-single .entry-content {
         font-size: 1.1em;
         color: #333;
         line-height: 1.8;
     }
     .package-single .package-meta {
         margin-top: 20px;
         padding: 15px;
         background-color: #f8f9fa;
         border-radius: 5px;
     }
     .package-single .package-price,
     .package-single .package-duration {
         font-size: 1em;
         color: #444;
         margin: 5px 0;
     }
     .package-single .entry-footer {
         margin-top: 20px;
         font-size: 0.9em;
         color: #666;
     }
     .package-single .post-navigation {
         margin: 40px 0;
     }
     .package-single .post-navigation a {
         color: #007bff;
         text-decoration: none;
     }
     .package-single .post-navigation a:hover {
         text-decoration: underline;
     }
