* {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    
    body {
        font-family: 'Lato', sans-serif;
        color: #333;
        line-height: 1.6;
        overflow-x: hidden;
    }
    
    h1, h2, h3, h4, h5, h6 {
        font-family: 'Cinzel', serif;
        font-weight: 700;
        line-height: 1.2;
    }
    
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    .navbar {
        position: fixed;
        top: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.9);
        padding: 15px 0;
        z-index: 1000;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }
    
    .navbar .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .nav-brand {
        font-family: 'Cinzel', serif;
        font-size: 24px;
        font-weight: 700;
        color: #d4af37;
    }
    
    .nav-menu {
        display: flex;
        list-style: none;
        gap: 30px;
    }
    
    .nav-menu a {
        color: #fff;
        text-decoration: none;
        transition: color 0.3s;
    }
    
    .nav-menu a:hover {
        color: #d4af37;
    }
    
    .hero {
        height: 100vh;
        background: url('../images/088732EF-3474-4DDB-87C1-1F6B8B9533D1_31d889c2_d0837926.jpeg') center/cover no-repeat;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    
    .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
    }
    
    .hero-content {
        position: relative;
        z-index: 2;
        color: #fff;
        max-width: 900px;
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 72px;
        margin-bottom: 20px;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
        color: #d4af37;
    }
    
    .hero-subtitle {
        font-size: 28px;
        margin-bottom: 15px;
        font-weight: 300;
        text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
    }
    
    .hero-date {
        font-size: 22px;
        margin-bottom: 40px;
        text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
    }
    
    .cta-button {
        display: inline-block;
        padding: 18px 45px;
        background: #d4af37;
        color: #000;
        text-decoration: none;
        font-weight: 700;
        font-size: 18px;
        border-radius: 50px;
        transition: all 0.3s;
        box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    }
    
    .cta-button:hover {
        background: #b8941f;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
    }
    
    .cta-button.large {
        padding: 22px 55px;
        font-size: 20px;
    }
    
    .intro {
        padding: 100px 0;
        background: #f9f7f4;
        text-align: center;
    }
    
    .section-title {
        font-size: 48px;
        margin-bottom: 30px;
        color: #2c1810;
    }
    
    .intro-text {
        font-size: 20px;
        max-width: 900px;
        margin: 0 auto 20px;
        line-height: 1.8;
        color: #555;
    }
    
    .intro-text.highlight {
        font-size: 24px;
        font-weight: 700;
        color: #2c1810;
        font-style: italic;
        margin-top: 30px;
    }
    
    .journey-highlights {
        padding: 100px 0;
        background: #fff;
    }
    
    .highlight-category {
        margin-bottom: 80px;
    }
    
    .category-title {
        font-size: 36px;
        color: #d4af37;
        margin-bottom: 40px;
        text-align: center;
    }
    
    .highlights-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }
    
    .highlight-card {
        background: #f9f7f4;
        padding: 30px;
        border-radius: 12px;
        border-left: 4px solid #d4af37;
        transition: transform 0.3s, box-shadow 0.3s;
    }
    
    .highlight-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    .highlight-card h4 {
        font-size: 22px;
        margin-bottom: 15px;
        color: #2c1810;
    }
    
    .highlight-card p {
        font-size: 16px;
        color: #666;
        line-height: 1.6;
    }
    
    .feature-section {
        padding: 100px 0;
    }
    
    .jordan-section {
        background: #fff;
    }
    
    .sinai-section {
        background: #f9f7f4;
    }
    
    .experiences-section {
        background: #fff;
    }
    
    .feature-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
    }
    
    .feature-content.reverse {
        direction: rtl;
    }
    
    .feature-content.reverse > * {
        direction: ltr;
    }
    
    .feature-text h2 {
        font-size: 42px;
        margin-bottom: 25px;
        color: #2c1810;
    }
    
    .feature-text p {
        font-size: 18px;
        margin-bottom: 25px;
        line-height: 1.8;
        color: #555;
    }
    
    .feature-list {
        list-style: none;
        padding: 0;
    }
    
    .feature-list li {
        padding: 12px 0;
        padding-left: 30px;
        position: relative;
        font-size: 17px;
        color: #555;
    }
    
    .feature-image img {
        width: 100%;
        max-width: 550px;
        height: auto;
        border-radius: 12px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    }
    
    .spiritual-section {
        padding: 100px 0;
        background: linear-gradient(135deg, #2c1810 0%, #4a3527 100%);
        color: #fff;
    }
    
    .spiritual-section .section-title {
        color: #d4af37;
    }
    
    .section-intro {
        text-align: center;
        font-size: 20px;
        max-width: 800px;
        margin: 0 auto 50px;
        line-height: 1.8;
    }
    
    .spiritual-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }
    
    .spiritual-card {
        background: rgba(255, 255, 255, 0.1);
        padding: 35px;
        border-radius: 12px;
        border: 1px solid rgba(212, 175, 55, 0.3);
    }
    
    .spiritual-card h3 {
        font-size: 24px;
        margin-bottom: 15px;
        color: #d4af37;
    }
    
    .spiritual-card p {
        font-size: 16px;
        line-height: 1.7;
        color: rgba(255, 255, 255, 0.9);
    }
    
    .itinerary-section {
        padding: 100px 0;
        background: #f9f7f4;
    }
    
    .itinerary-image-container {
        text-align: center;
        margin: 50px 0;
    }
    
    .itinerary-hero-image {
        width: 100%;
        max-width: 800px;
        height: auto;
        border-radius: 12px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    }
    
    .itinerary-region {
        margin-bottom: 60px;
    }
    
    .region-title {
        font-size: 36px;
        color: #d4af37;
        margin-bottom: 20px;
        border-bottom: 3px solid #d4af37;
        padding-bottom: 15px;
    }
    
    .region-intro {
        font-size: 18px;
        font-style: italic;
        color: #666;
        margin-bottom: 30px;
    }
    
    .itinerary-day {
        display: grid;
        grid-template-columns: 120px 1fr;
        gap: 30px;
        margin-bottom: 30px;
        background: #fff;
        padding: 25px;
        border-radius: 12px;
        border-left: 4px solid #d4af37;
        transition: transform 0.3s;
    }
    
    .itinerary-day:hover {
        transform: translateX(5px);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }
    
    .day-number {
        font-family: 'Cinzel', serif;
        font-size: 20px;
        font-weight: 700;
        color: #d4af37;
        padding: 15px;
        background: #f9f7f4;
        border-radius: 8px;
        text-align: center;
    }
    
    .day-content h4 {
        font-size: 22px;
        margin-bottom: 10px;
        color: #2c1810;
    }
    
    .day-content p {
        font-size: 16px;
        color: #666;
        line-height: 1.7;
    }
    
    .included-section {
        padding: 100px 0;
        background: #fff;
    }
    
    .included-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 40px;
        margin-bottom: 60px;
    }
    
    .included-category h3 {
        font-size: 24px;
        color: #d4af37;
        margin-bottom: 20px;
    }
    
    .included-category ul {
        list-style: none;
    }
    
    .included-category li {
        padding: 10px 0;
        padding-left: 25px;
        position: relative;
        font-size: 16px;
        color: #555;
    }
    
    .not-included, .optional-enhancements {
        background: #f9f7f4;
        padding: 30px;
        border-radius: 12px;
        margin-top: 40px;
    }
    
    .not-included h3, .optional-enhancements h3 {
        font-size: 24px;
        color: #2c1810;
        margin-bottom: 20px;
    }
    
    .not-included ul, .optional-enhancements ul {
        list-style: none;
    }
    
    .not-included li, .optional-enhancements li {
        padding: 8px 0;
        padding-left: 25px;
        position: relative;
        font-size: 16px;
        color: #666;
    }
    
    .who-section {
        padding: 100px 0;
        background: #f9f7f4;
    }
    
    .who-image-container {
        text-align: center;
        margin: 40px 0 60px;
    }
    
    .who-image-container img {
        width: 100%;
        max-width: 800px;
        height: auto;
        border-radius: 12px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    }
    
    .who-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 35px;
    }
    
    .who-card {
        background: #fff;
        padding: 35px;
        border-radius: 12px;
        border-top: 4px solid #d4af37;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    }
    
    .who-card h3 {
        font-size: 24px;
        margin-bottom: 15px;
        color: #d4af37;
    }
    
    .who-card p {
        font-size: 16px;
        color: #666;
        line-height: 1.7;
    }
    
    .hero-journey-section {
        padding: 100px 0;
        background: linear-gradient(135deg, #2c1810 0%, #4a3527 100%);
        color: #fff;
    }
    
    .hero-journey-section .section-title {
        color: #d4af37;
    }
    
    .journey-steps {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 30px;
        margin-top: 50px;
    }
    
    .journey-step {
        background: rgba(255, 255, 255, 0.1);
        padding: 30px;
        border-radius: 12px;
        border: 1px solid rgba(212, 175, 55, 0.3);
        text-align: center;
    }
    
    .journey-step h3 {
        font-size: 22px;
        margin-bottom: 15px;
        color: #d4af37;
    }
    
    .journey-step p {
        font-size: 15px;
        line-height: 1.6;
        color: rgba(255, 255, 255, 0.85);
    }
    
    .team-section {
        padding: 100px 0;
        background: #fff;
    }
    
    .team-grid {
        display: grid;
        gap: 60px;
    }
    
    .team-member {
        display: grid;
        grid-template-columns: 300px 1fr;
        gap: 40px;
        align-items: start;
    }
    
    .team-photo img {
        width: 100%;
        max-width: 300px;
        height: auto;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }
    
    .team-info h3 {
        font-size: 32px;
        margin-bottom: 10px;
        color: #2c1810;
    }
    
    .team-role {
        font-size: 18px;
        color: #d4af37;
        font-weight: 700;
        margin-bottom: 20px;
    }
    
    .team-bio {
        font-size: 16px;
        line-height: 1.8;
        color: #666;
        margin-bottom: 15px;
    }
    
    .pricing-section {
        padding: 100px 0;
        background: #f9f7f4;
    }
    
    .pricing-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 40px;
        margin: 50px 0;
    }
    
    .pricing-card {
        background: #fff;
        padding: 50px 35px;
        border-radius: 12px;
        text-align: center;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s;
    }
    
    .pricing-card:hover {
        transform: translateY(-10px);
    }
    
    .pricing-card.featured {
        border: 3px solid #d4af37;
    }
    
    .pricing-card h3 {
        font-size: 28px;
        margin-bottom: 20px;
        color: #2c1810;
    }
    
    .price {
        font-size: 56px;
        font-weight: 700;
        color: #d4af37;
        margin: 20px 0;
    }
    
    .price-label {
        font-size: 18px;
        color: #999;
    }
    
    .payment-schedule {
        background: #fff;
        padding: 50px;
        border-radius: 12px;
        margin: 60px 0;
    }
    
    .payment-schedule h3 {
        font-size: 32px;
        text-align: center;
        margin-bottom: 40px;
        color: #2c1810;
    }
    
    .payment-steps {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
    }
    
    .payment-step {
        text-align: center;
        padding: 30px;
        background: #f9f7f4;
        border-radius: 12px;
    }
    
    .payment-amount {
        font-size: 22px;
        font-weight: 700;
        color: #d4af37;
        margin-bottom: 10px;
    }
    
    .refund-policy {
        background: #2c1810;
        color: #fff;
        padding: 50px;
        border-radius: 12px;
        margin-top: 60px;
    }
    
    .refund-policy h3 {
        font-size: 28px;
        margin-bottom: 30px;
        color: #d4af37;
    }
    
    .policy-list {
        list-style: none;
    }
    
    .policy-list li {
        padding: 15px 0;
        font-size: 16px;
        line-height: 1.6;
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    }
    
    .policy-list strong {
        color: #d4af37;
    }
    
    .testimonials-section {
        padding: 100px 0;
        background: #fff;
    }
    
    .testimonials-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 35px;
        margin-top: 50px;
    }
    
    .testimonial-card {
        background: #f9f7f4;
        padding: 35px;
        border-radius: 12px;
        border-left: 4px solid #d4af37;
    }
    
    .testimonial-text {
        font-size: 16px;
        line-height: 1.8;
        color: #555;
        font-style: italic;
        margin-bottom: 20px;
    }
    
    .testimonial-author {
        font-size: 16px;
        font-weight: 700;
        color: #2c1810;
        text-align: right;
    }
    
    .contact-section {
        padding: 100px 0;
        background: linear-gradient(135deg, #2c1810 0%, #4a3527 100%);
        color: #fff;
        text-align: center;
    }
    
    .contact-section .section-title {
        color: #d4af37;
    }
    
    .contact-intro {
        font-size: 28px;
        font-weight: 700;
        margin-bottom: 20px;
    }
    
    .contact-text {
        font-size: 18px;
        max-width: 700px;
        margin: 0 auto 20px;
        line-height: 1.8;
    }
    
    .contact-text.highlight {
        font-size: 22px;
        font-weight: 700;
        color: #d4af37;
        margin: 30px auto;
    }
    
    .contact-info {
        background: rgba(255, 255, 255, 0.1);
        padding: 40px;
        border-radius: 12px;
        max-width: 600px;
        margin: 50px auto;
        border: 1px solid rgba(212, 175, 55, 0.3);
    }
    
    .contact-info h3 {
        font-size: 28px;
        margin-bottom: 20px;
        color: #d4af37;
    }
    
    .contact-info a {
        color: #d4af37;
        text-decoration: none;
    }
    
    .booking-steps {
        max-width: 600px;
        margin: 50px auto;
        text-align: left;
        background: rgba(255, 255, 255, 0.1);
        padding: 40px;
        border-radius: 12px;
    }
    
    .booking-steps h3 {
        font-size: 28px;
        margin-bottom: 25px;
        color: #d4af37;
        text-align: center;
    }
    
    .booking-steps ol {
        padding-left: 25px;
    }
    
    .booking-steps li {
        font-size: 18px;
        margin: 15px 0;
        line-height: 1.6;
    }
    
    .footer {
        padding: 60px 0;
        background: #1a1410;
        color: #fff;
        text-align: center;
    }
    
    .footer-quote {
        font-size: 18px;
        font-style: italic;
        max-width: 800px;
        margin: 0 auto 20px;
        line-height: 1.8;
        color: rgba(255, 255, 255, 0.9);
    }
    
    .footer-author {
        font-size: 16px;
        font-weight: 700;
        margin-bottom: 30px;
        color: #d4af37;
    }
    
    .footer-tagline {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.7);
    }
    
    @media (max-width: 768px) {
        .nav-menu { display: none; }
        .hero-title { font-size: 42px; }
        .hero-subtitle { font-size: 20px; }
        .section-title { font-size: 36px; }
        .feature-content, .feature-content.reverse {
            grid-template-columns: 1fr;
            direction: ltr;
        }
        .team-member { grid-template-columns: 1fr; }
        .itinerary-day { grid-template-columns: 1fr; }
    }
    
    .fade-in {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    }
    
    .fade-in.visible {
        opacity: 1;
        transform: translateY(0);
    }