
    .travel-hero {
        background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('{% static "images/travel-hero.jpg" %}');
        background-size: cover;
        background-position: center;
        padding: 50px 0;
        text-align: center;
        color: white;
    }
    
    .travel-hero h1 {
        font-size: 42px;
        font-weight: 800;
        margin-bottom: 10px;
    }
    
    .travel-hero p {
        font-size: 16px;
        max-width: 700px;
        margin: 0 auto;
    }
    
    .investment-box {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        border-radius: 12px;
        padding: 15px 20px;
        text-align: center;
        margin-bottom: 25px;
    }
    
    .investment-box h3 {
        font-size: 20px;
        margin-bottom: 8px;
    }
    
    .investment-box p {
        font-size: 14px;
        margin-bottom: 0;
    }
    
    .step-card {
        background: white;
        border-radius: 12px;
        padding: 15px;
        text-align: center;
        box-shadow: 0 3px 10px rgba(0,0,0,0.05);
        height: 100%;
        transition: all 0.3s;
    }
    
    .step-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    }
    
    .step-number {
        width: 45px;
        height: 45px;
        background: #667eea;
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        font-weight: 700;
        margin: 0 auto 12px;
    }
    
    .step-card h4 {
        font-size: 18px;
        margin-bottom: 8px;
    }
    
    .step-card p {
        font-size: 13px;
        color: #666;
        margin-bottom: 0;
    }
    
    .info-card {
        background: white;
        border-radius: 12px;
        padding: 20px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        height: 100%;
        transition: all 0.3s;
    }
    
    .info-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    }
    
    .form-wrapper {
        background: white;
        border-radius: 20px;
        padding: 25px;
        box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    }
    
    .form-wrapper h2 {
        font-size: 24px;
        margin-bottom: 10px;
    }
    
    .form-control, .form-select {
        border-radius: 8px;
        border: 1px solid #ddd;
        padding: 8px 12px;
        font-size: 14px;
        width: 100%;
    }
    
    .form-control:focus, .form-select:focus {
        border-color: #667eea;
        box-shadow: 0 0 5px rgba(102,126,234,0.3);
        outline: none;
    }
    
    .btn-submit {
        background: #667eea;
        color: white;
        padding: 10px 30px;
        border: none;
        border-radius: 50px;
        font-weight: 600;
        width: 100%;
        transition: all 0.3s;
        font-size: 16px;
    }
    
    .btn-submit:hover {
        background: #5a67d8;
        transform: translateY(-2px);
    }
    
    .travel-image-card {
        background: white;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        margin-bottom: 20px;
        transition: all 0.3s;
        text-align: center;
        padding: 12px;
    }
    
    .travel-image-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    }
    
    .travel-image {
        width: 100%;
        height: 160px;
        object-fit: cover;
        border-radius: 10px;
    }
    
    .image-caption {
        margin-top: 10px;
        font-weight: 500;
        color: #333;
        font-size: 14px;
    }
    
    .section-title {
        font-size: 22px;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 20px;
        padding-bottom: 8px;
        border-bottom: 3px solid #667eea;
        display: inline-block;
    }
    
    .checklist-section {
        margin-bottom: 30px;
    }
    
    /* Horizontal Form Layout */
    .form-row {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
        margin-bottom: 15px;
    }
    
    .form-group {
        flex: 1;
        min-width: calc(33.33% - 15px);
    }
    
    .form-group-full {
        width: 100%;
    }
    
    label {
        font-size: 13px;
        margin-bottom: 5px;
        font-weight: 500;
    }
    
    textarea {
        font-size: 13px;
    }
    
    /* Mobile Responsive */
    @media (max-width: 992px) {
        .form-group {
            min-width: calc(50% - 15px);
        }
    }
    
    @media (max-width: 768px) {
        .travel-hero {
            padding: 30px 0;
        }
        .travel-hero h1 {
            font-size: 28px;
        }
        .travel-hero p {
            font-size: 14px;
        }
        .form-wrapper {
            padding: 20px;
            margin-bottom: 20px;
        }
        .section-title {
            font-size: 20px;
        }
        .form-group {
            min-width: 100%;
        }
        .form-row {
            gap: 12px;
        }
        .investment-box h3 {
            font-size: 16px;
        }
        .investment-box p {
            font-size: 12px;
        }
        .info-card {
            margin-top: 20px;
        }
        .step-card {
            margin-bottom: 15px;
        }
        .travel-image-card {
            margin-bottom: 15px;
        }
        .checklist-section {
            margin-bottom: 20px;
        }
    }
    
    @media (max-width: 576px) {
        .container-fluid {
            padding-left: 15px;
            padding-right: 15px;
        }
        .form-wrapper {
            padding: 15px;
        }
        .btn-submit {
            padding: 10px 20px;
            font-size: 14px;
        }
    }
