* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.header {
    background: linear-gradient(135deg, #8b6914 0%, #b8860b 50%, #daa520 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.header h1 {
    margin: 0;
    font-size: 2.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.header p {
    margin: 0.5rem 0 0 0;
    opacity: 0.9;
    font-size: 1.2em;
}

/* Company Banner Logo */
.company-banner {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-logo {
    max-width: 100%;
    height: auto;
    max-height: 120px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.banner-logo:hover {
    transform: scale(1.02);
}

.highlight-box {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #8b6914;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    font-size: 1.3em;
    font-weight: bold;
    margin: 20px 0;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.section {
    background: rgba(255, 255, 255, 0.95);
    margin-bottom: 10px;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.section h2 {
    color: #8b6914;
    font-size: 1.8em;
    margin-bottom: 20px;
    text-align: center;
    border-bottom: 3px solid #daa520;
    padding-bottom: 10px;
}

.commission-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.commission-table th {
    background: linear-gradient(45deg, #8b6914, #b8860b);
    color: white;
    padding: 15px;
    text-align: center;
    font-weight: bold;
    font-size: 1.1em;
}

.commission-table td {
    padding: 12px 15px;
    text-align: center;
    border-bottom: 1px solid #ecf0f1;
}

.commission-table tr:nth-child(even) {
    background-color: #f8f9fa;
}

.commission-table tr:hover {
    background-color: #fff8dc;
    transform: scale(1.02);
    transition: all 0.3s ease;
}

.level-badge {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    color: white;
    font-weight: bold;
    font-size: 0.9em;
}

.bronze { background: linear-gradient(45deg, #cd7f32, #b8860b); }
.silver { background: linear-gradient(45deg, #c0c0c0, #a8a8a8); }
.gold { background: linear-gradient(45deg, #ffd700, #ffb347); }
.platinum { background: linear-gradient(45deg, #e5e4e2, #c0c0c0); }

.title-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 25px;
    color: white;
    font-weight: bold;
    font-size: 1em;
}

.junior { background: linear-gradient(45deg, #27ae60, #2ecc71); }
.senior { background: linear-gradient(45deg, #8b6914, #b8860b); }
.team-leader { background: linear-gradient(45deg, #9b59b6, #8e44ad); }
.master { background: linear-gradient(45deg, #e74c3c, #c0392b); }

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

.benefit-card {
    background: linear-gradient(135deg, #8b6914, #b8860b);
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(139, 105, 20, 0.3);
}

.benefit-card h4 {
    margin-bottom: 10px;
    font-size: 1.2em;
}

.stats-box {
    background: linear-gradient(45deg, #8b6914, #b8860b);
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    margin: 10px 0;
    box-shadow: 0 5px 15px rgba(139, 105, 20, 0.3);
}

.stats-number {
    font-size: 2em;
    font-weight: bold;
    display: block;
}

.cta-section {
    background: linear-gradient(45deg, #8b6914, #b8860b);
    color: white;
    text-align: center;
    padding: 40px;
    border-radius: 15px;
    margin-top: 30px;
    box-shadow: 0 10px 30px rgba(139, 105, 20, 0.3);
}

.cta-button {
    display: inline-block;
    background: #ffd700;
    color: #8b6914;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.5);
}

.main-container {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.main-nav {
    margin-top: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 8px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.nav-section {
    background: rgba(240, 240, 240, 0.9);
    border-radius: 15px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(200, 200, 200, 0.8);
}

.nav-section-title {
    color: #333;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-align: center;
    text-shadow: none;
    border-bottom: 2px solid rgba(139, 105, 20, 0.3);
    padding-bottom: 0.5rem;
}

.nav-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* Dashboard Navigation Styles - Original */
.nav-link {
    display: flex;
    align-items: center;
    background: rgba(250, 250, 250, 0.9);
    color: #333;
    text-decoration: none;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    border: 2px solid #daa520;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(218, 165, 32, 0.3);
    border-color: #b8860b;
}

/* Org Chart Navigation Styles - Separate */
.navigation {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.navigation .nav-link {
    display: inline-block;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.navigation .nav-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.navigation .nav-link.active {
    background: rgba(255, 255, 255, 0.9);
    color: #2c3e50;
    border: 2px solid white;
}

.nav-icon {
    font-size: 1.5rem;
    margin-right: 0.75rem;
    min-width: 2rem;
    text-align: center;
}

.nav-text {
    font-size: 1rem;
    line-height: 1.2;
}

/* Umrah Agent Page Specific Styles */
.umrah-page {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.umrah-page .header {
    background: linear-gradient(135deg, #01413a 0%, #0d4f3c 50%, #1a5f4a 100%);
    color: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    box-shadow: 0 15px 40px rgba(45, 80, 22, 0.3);
    overflow: hidden;
}

.umrah-page .header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 193, 7, 0.1) 100%);
    pointer-events: none;
}

.umrah-page .header h1 {
    margin: 0;
    font-size: 2.8rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.umrah-page .header p {
    margin: 0.5rem 0 0 0;
    opacity: 0.95;
    font-size: 1.3em;
    position: relative;
    z-index: 1;
}

.umrah-page .highlight-box {
    background: linear-gradient(45deg, #fff8e1, #ffecb3);
    color: #8b6914;
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    font-size: 1.4em;
    font-weight: bold;
    margin: 25px 0;
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.2);
    border: 2px solid rgba(255, 215, 0, 0.3);
    position: relative;
    z-index: 1;
}

.umrah-page .section {
    background: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.umrah-page .section h2 {
    color: #2d5016;
    font-size: 2em;
    margin-bottom: 25px;
    text-align: center;
    border-bottom: 3px solid #ffd700;
    padding-bottom: 15px;
    position: relative;
}

.umrah-page .section h2::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, #ffd700, #ffb347);
    border-radius: 2px;
}

.umrah-page .commission-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #ddd;
}

.umrah-page .commission-table th {
    background: linear-gradient(135deg, #2d5016 0%, #3d6b1a 100%);
    color: white;
    padding: 8px;
    text-align: center;
    font-weight: bold;
    font-size: 1.1em;
    border: 1px solid #ddd;
    border-bottom: 2px solid #ddd;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.umrah-page .commission-table td {
    padding: 8px;
    text-align: center;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
}

.umrah-page .commission-table td:nth-child(4) {
    text-align: left;
    padding-left: 20px;
}

.umrah-page .commission-table tr:nth-child(even) {
    background-color: rgba(255, 248, 225, 0.5);
}

.umrah-page .commission-table tr:hover {
    background-color: rgba(255, 248, 225, 0.8);
    transform: scale(1.01);
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.2);
}

.umrah-page .level-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 25px;
    color: white;
    font-weight: bold;
    font-size: 0.95em;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.umrah-page .bronze { 
    background: linear-gradient(45deg, #d4af37, #b8860b); 
    border: 1px solid rgba(255, 215, 0, 0.3);
}
.umrah-page .silver { 
    background: linear-gradient(45deg, #c0c0c0, #a8a8a8); 
    border: 1px solid rgba(192, 192, 192, 0.3);
}
.umrah-page .gold { 
    background: linear-gradient(45deg, #ffd700, #ffb347); 
    border: 1px solid rgba(255, 215, 0, 0.5);
}
.umrah-page .platinum { 
    background: linear-gradient(45deg, #e5e4e2, #c0c0c0); 
    border: 1px solid rgba(229, 228, 226, 0.3);
}
.umrah-page .diamond { 
    background: linear-gradient(45deg, #b9f2ff, #87ceeb); 
    border: 1px solid rgba(185, 242, 255, 0.5);
    color: #2c3e50;
}

.umrah-page .title-badge {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 30px;
    color: white;
    font-weight: bold;
    font-size: 1em;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.umrah-page .junior { 
    background: linear-gradient(45deg, #a8e6cf, #7fcdcd); 
    color: #2d5016;
    border: 1px solid rgba(168, 230, 207, 0.5);
}
.umrah-page .senior { 
    background: linear-gradient(45deg, #ffd3a5, #fd9853); 
    color: #8b6914;
    border: 1px solid rgba(255, 211, 165, 0.5);
}
.umrah-page .team-leader { 
    background: linear-gradient(45deg, #a8c8ec, #7b9ce8); 
    color: #2c3e50;
    border: 1px solid rgba(168, 200, 236, 0.5);
}
.umrah-page .master { 
    background: linear-gradient(45deg, #ffb3ba, #ff8a95); 
    color: #8b0000;
    border: 1px solid rgba(255, 179, 186, 0.5);
}

.umrah-page .benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 25px 0;
}

.umrah-page .benefit-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 249, 250, 0.9) 100%);
    color: #2d5016;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.umrah-page .benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    border-color: rgba(255, 215, 0, 0.4);
}

.umrah-page .benefit-card h4 {
    margin-bottom: 15px;
    font-size: 1.3em;
    color: #2d5016;
    font-weight: bold;
}

.umrah-page .benefit-card p {
    color: #495057;
    line-height: 1.6;
}

.umrah-page .stats-box {
    background: linear-gradient(135deg, rgba(255, 248, 225, 0.9) 0%, rgba(255, 236, 179, 0.9) 100%);
    color: #2d5016;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    margin: 15px 0;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.15);
    border: 2px solid rgba(255, 215, 0, 0.3);
    backdrop-filter: blur(10px);
}

.umrah-page .stats-number {
    font-size: 2.2em;
    font-weight: bold;
    display: block;
    color: #2d5016;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.umrah-page .cta-section {
    background: linear-gradient(135deg, #01413a 0%, #0d4f3c 50%, #1a5f4a 100%);
    color: white;
    text-align: center;
    padding: 50px;
    border-radius: 20px;
    margin-top: 40px;
    box-shadow: 0 15px 40px rgba(45, 80, 22, 0.3);
    position: relative;
    overflow: hidden;
}

.umrah-page .cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 193, 7, 0.1) 100%);
    pointer-events: none;
}

.umrah-page .cta-section h2 {
    color: white;
    border: none;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.umrah-page .cta-section h2::after {
    display: none;
}

.umrah-page .cta-section p {
    position: relative;
    z-index: 1;
    font-size: 1.2em;
    opacity: 0.95;
}

.umrah-page .cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #ffd700, #ffb347);
    color: #2d5016;
    padding: 18px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.3em;
    margin-top: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
    border: 2px solid rgba(255, 215, 0, 0.5);
    position: relative;
    z-index: 1;
}

.umrah-page .cta-button:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 12px 30px rgba(255, 215, 0, 0.4);
    background: linear-gradient(45deg, #ffb347, #ffd700);
}

.umrah-page .nav-link {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    text-decoration: none;
    padding: 0.8rem 1.8rem;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-weight: bold;
    transition: all 0.3s ease;
    margin: 0 0.5rem;
    backdrop-filter: blur(10px);
}

.umrah-page .nav-link:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.5);
}

@media (max-width: 768px) {
    .container {
        padding: 10px;
    }
    
    .header h1 {
        font-size: 2em;
    }
    
    .main-nav {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .nav-section {
        padding: 1.25rem;
    }
    
    .nav-links {
        gap: 0.5rem;
    }
    
    .nav-link {
        padding: 0.875rem 1rem;
    }
    
    .nav-icon {
        font-size: 1.25rem;
        margin-right: 0.5rem;
        min-width: 1.5rem;
    }
    
    .nav-text {
        font-size: 0.9rem;
    }
    
    .commission-table {
        font-size: 0.9em;
    }
    
    .benefit-grid {
        grid-template-columns: 1fr;
    }
    
    .umrah-page .header h1 {
        font-size: 2.2em;
    }
    
    .umrah-page .section {
        padding: 20px;
    }
    
    .umrah-page .benefit-grid {
        grid-template-columns: 1fr;
    }
    
    .umrah-page .cta-section {
        padding: 30px 20px;
    }
}

/* Subtitle styling for better readability */
.subtitle {
    color: #666;
    font-size: 0.9em;
    font-weight: normal;
    font-style: italic;
    margin-top: 4px;
    display: block;
    line-height: 1.4;
}

/* Improved bullet point styling */
.benefit-card ul {
    margin: 0;
    padding-left: 0;
    list-style: none;
}

.benefit-card li {
    margin-bottom: 16px;
    padding-left: 0;
    text-align: left;
}

.benefit-card li:last-child {
    margin-bottom: 0;
}

/* Special Incentive Cards Styling */
.special-incentive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.special-incentive-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    position: relative;
    border: 3px solid transparent;
}

.special-incentive-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.premium-card {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #ffd700 100%);
    border-color: #ff6b35;
}

.elite-card {
    background: linear-gradient(135deg, #8e44ad 0%, #9b59b6 50%, #e74c3c 100%);
    border-color: #8e44ad;
}

.card-header {
    padding: 25px 25px 15px 25px;
    text-align: center;
    position: relative;
}

.card-header h3 {
    color: white;
    font-size: 1.5em;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: bold;
}

.card-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(45deg, #ffd700, #ffb347);
    color: #8b6914;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9em;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.card-content {
    padding: 0 25px 25px 25px;
    text-align: center;
}

.incentive-description {
    color: white;
    font-size: 1.1em;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.reward-highlight {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 20px;
    margin: 20px 0;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.reward-icon {
    font-size: 2.5em;
    display: block;
    margin-bottom: 10px;
}

.reward-text {
    color: white;
    font-size: 1.4em;
    font-weight: bold;
    display: block;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.reward-details {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1em;
    margin-top: 15px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Umrah page specific special incentive cards */
.umrah-page .special-incentive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 35px;
    margin: 35px 0;
}

.umrah-page .special-incentive-card {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    transition: all 0.4s ease;
    position: relative;
    border: 4px solid transparent;
}

.umrah-page .special-incentive-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
}

.umrah-page .premium-card {
    background: linear-gradient(135deg, #ff4757 0%, #ff6b35 30%, #f7931e 70%, #ffd700 100%);
    border-color: #ff4757;
}

.umrah-page .elite-card {
    background: linear-gradient(135deg, #6c5ce7 0%, #8e44ad 30%, #9b59b6 70%, #e74c3c 100%);
    border-color: #6c5ce7;
}

.umrah-page .card-header {
    padding: 30px 30px 20px 30px;
    text-align: center;
    position: relative;
}

.umrah-page .card-header h3 {
    color: white;
    font-size: 1.6em;
    margin: 0;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
    font-weight: bold;
}

.umrah-page .card-badge {
    position: absolute;
    top: -12px;
    right: -12px;
    background: linear-gradient(45deg, #ffd700, #ffb347);
    color: #8b6914;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1em;
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.5);
    border: 3px solid rgba(255, 255, 255, 0.4);
    animation: pulse 2s infinite;
}

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

.umrah-page .card-content {
    padding: 0 30px 30px 30px;
    text-align: center;
}

.umrah-page .incentive-description {
    color: white;
    font-size: 1.2em;
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.umrah-page .reward-highlight {
    background: rgba(255, 255, 255, 0.25);
    border-radius: 20px;
    padding: 25px;
    margin: 25px 0;
    backdrop-filter: blur(15px);
    border: 3px solid rgba(255, 255, 255, 0.4);
}

.umrah-page .reward-icon {
    font-size: 3em;
    display: block;
    margin-bottom: 15px;
}

.umrah-page .reward-text {
    color: white;
    font-size: 1.5em;
    font-weight: bold;
    display: block;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
}

.umrah-page .reward-details {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1em;
    margin-top: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

/* Getting Started Section Styling - Compact */
.getting-started-content {
    max-width: 800px;
    margin: 0 auto;
}

.intro-text {
    font-size: 1.1em;
    line-height: 1.5;
    color: #2d5016;
    text-align: center;
    margin-bottom: 15px;
    padding: 12px 15px;
    background: rgba(255, 248, 225, 0.5);
    border-radius: 10px;
    border-left: 3px solid #ffd700;
}

.process-steps {
    margin: 15px 0;
}

.process-steps h3 {
    color: #2d5016;
    font-size: 1.2em;
    margin-bottom: 10px;
    text-align: center;
}

.process-steps ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.process-steps li {
    background: rgba(255, 255, 255, 0.8);
    margin: 8px 0;
    padding: 12px 15px;
    border-radius: 8px;
    border-left: 3px solid #ffd700;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.process-steps li:hover {
    transform: translateX(3px);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
}

.process-steps li strong {
    color: #2d5016;
    font-size: 1em;
}

.important-note {
    background: linear-gradient(135deg, rgba(255, 248, 225, 0.9) 0%, rgba(255, 236, 179, 0.9) 100%);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    padding: 15px;
    margin-top: 15px;
    text-align: center;
}

.important-note h4 {
    color: #2d5016;
    font-size: 1.1em;
    margin-bottom: 8px;
}

.important-note p {
    color: #495057;
    line-height: 1.4;
    font-size: 0.95em;
}

/* Umrah page specific getting started styling - Compact */
.umrah-page .intro-text {
    font-size: 1.2em;
    line-height: 1.6;
    color: #2d5016;
    text-align: center;
    margin-bottom: 18px;
    padding: 15px 18px;
    background: rgba(255, 248, 225, 0.6);
    border-radius: 12px;
    border-left: 4px solid #ffd700;
    box-shadow: 0 3px 8px rgba(255, 215, 0, 0.1);
}

.umrah-page .process-steps h3 {
    color: #2d5016;
    font-size: 1.3em;
    margin-bottom: 12px;
    text-align: center;
    border-bottom: 2px solid #ffd700;
    padding-bottom: 6px;
}

.umrah-page .process-steps li {
    background: rgba(255, 255, 255, 0.9);
    margin: 10px 0;
    padding: 15px 18px;
    border-radius: 10px;
    border-left: 4px solid #ffd700;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.umrah-page .process-steps li:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.12);
    border-left-color: #ffb347;
}

.umrah-page .process-steps li strong {
    color: #2d5016;
    font-size: 1.1em;
}

.umrah-page .important-note {
    background: linear-gradient(135deg, rgba(255, 248, 225, 0.9) 0%, rgba(255, 236, 179, 0.9) 100%);
    border: 3px solid rgba(255, 215, 0, 0.4);
    border-radius: 12px;
    padding: 18px;
    margin-top: 18px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.15);
    backdrop-filter: blur(10px);
}

.umrah-page .important-note h4 {
    color: #2d5016;
    font-size: 1.2em;
    margin-bottom: 10px;
}

.umrah-page .important-note p {
    color: #495057;
    line-height: 1.5;
    font-size: 1em;
}

@media (max-width: 768px) {
    .special-incentive-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .umrah-page .special-incentive-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .umrah-page .card-header h3 {
        font-size: 1.4em;
    }
    
    .umrah-page .reward-text {
        font-size: 1.3em;
    }
    
    .intro-text {
        font-size: 1em;
        padding: 10px 12px;
    }
    
    .umrah-page .intro-text {
        font-size: 1.1em;
        padding: 12px 15px;
    }
    
    .process-steps li {
        padding: 10px 12px;
    }
    
    .umrah-page .process-steps li {
        padding: 12px 15px;
    }
    
    .important-note {
        padding: 12px;
    }
    
    .umrah-page .important-note {
        padding: 15px;
    }
}
