    .first-timers-section {
        position: relative;
        background-color: #f8f8f8;
        padding: 5rem 0;
        min-height: 100vh;
        display: flex;
        align-items: center;
    }
    
    .first-timers-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .first-timers-content {
        max-width: 800px;
        text-align: center;
    }
    
    .first-timers-heading {
        font-family: 'Montserrat', sans-serif;
        font-size: 4rem;
        font-weight: 900;
        text-transform: uppercase;
        margin-bottom: 2rem;
        line-height: 1.1;
        color: #000;
    }
    
    .first-timers-description {
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 2.5rem;
        color: #333;
        max-width: 650px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .first-timers-buttons {
        display: flex;
        gap: 1rem;
        justify-content: center;
    }
    
    .btn-black {
        background-color: #000;
        color: white;
        border: none;
        font-weight: 700;
        text-transform: uppercase;
        padding: 0.75rem 1.5rem;
        cursor: pointer;
        transition: all 0.3s ease;
        text-decoration: none;
    }
    
    .btn-outline-black {
        background-color: transparent;
        color: #000;
        border: 2px solid #000;
        font-weight: 700;
        text-transform: uppercase;
        padding: 0.75rem 1.5rem;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .btn-black:hover {
        background-color: #333;
        color: white;
    }
    
    .btn-outline-black:hover {
        background-color: rgba(0,0,0,0.1);
    }
    
    /* Location badge */
    .location-badge {
        background: #000;
        color: white;
        padding: 0.5rem 1rem;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: bold;
        text-transform: uppercase;
        display: inline-block;
        margin-bottom: 1rem;
    }
    
    /* Modal styles */
    .modal-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,0.5);
        display: none;
        justify-content: center;
        align-items: center;
        z-index: 1000;
    }
    
    .modal {
        background-color: white;
        border-radius: 5px;
        padding: 2rem;
        position: relative;
        width: 90%;
        max-width: 500px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .modal-close {
        position: absolute;
        top: 15px;
        right: 15px;
        font-size: 1.5rem;
        cursor: pointer;
        background: none;
        border: none;
        padding: 0;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .modal-close:hover {
        background-color: rgba(0,0,0,0.1);
    }
    
    .modal-header {
        font-family: 'Montserrat', sans-serif;
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
        text-transform: uppercase;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .form-label {
        display: block;
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
        font-weight: 500;
    }
    
    .form-control {
        width: 100%;
        padding: 0.75rem;
        border: 1px solid #ddd;
        border-radius: 4px;
        font-size: 1rem;
    }
    
    .form-note {
        font-size: 0.8rem;
        color: #666;
        margin-top: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.4;
    }
    
    .btn-submit {
        width: 100%;
        background-color: #000;
        color: white;
        border: none;
        border-radius: 4px;
        padding: 0.75rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .btn-submit:hover {
        background-color: #333;
    }

    .modal.active {
        display: block;
    }
    
    .modal-overlay.active {
        display: flex;
    }
    
    @media (max-width: 767.98px) {
        .first-timers-heading {
            font-size: 2.5rem;
        }
        
        .first-timers-buttons {
            flex-direction: column;
            width: 100%;
            max-width: 250px;
            margin: 0 auto;
        }
        
        .btn-black, .btn-outline-black {
            width: 100%;
        }
        
        .first-timers-description {
            font-size: 1rem;
        }
        
        .modal {
            width: 95%;
            padding: 1.5rem;
        }
    }