
    /* ============================================
       FORCE EDGE-TO-EDGE - FULL WIDTH
       ============================================ */
    .main-content,
    .container,
    .container-fluid,
    .inner-container,
    .row,
    .col,
    body {
        max-width: 100% !important;
        width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        overflow-x: hidden !important;
    }
    
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    
    html, body {
        overflow-x: hidden;
        width: 100%;
        position: relative;
    }
    
    /* ============================================
       HERO SECTION - FULL WIDTH
       ============================================ */
    .choir-hero {
        background:url('{% static "images/pic5.jpg" %}');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        text-align: left;
        color: white;
        width: 100%;
        min-height: 400px;
        display: flex;
        align-items: center;
        padding: 0;
        margin: 0;
    }
    
    .choir-hero .hero-content {
        width: 100%;
        max-width: 1400px;
        margin-left: 5%;
        margin-right: auto;
        padding: 100px 0;
    }
    
    .choir-hero h1 {
        font-size: 52px;
        font-weight: 800;
        margin-bottom: 20px;
        text-shadow: 3px 3px 6px rgba(0,0,0,0.4);
    }
    
    .choir-hero p {
        font-size: 18px;
        max-width: 550px;
        opacity: 0.95;
    }
    
    /* ============================================
       CONTENT WRAPPER - LEFT ALIGNED
       ============================================ */
    .choir-content {
        width: 100%;
        margin: 0;
        padding: 60px 0;
        background: transparent;
        overflow-x: hidden;
    }
    
    .content-wrapper {
        max-width: 1400px;
        margin-left: 5%;
        margin-right: 5%;
    }
    
    /* ============================================
       INTRO SECTION
       ============================================ */
    .choir-intro {
        display: flex;
        gap: 40px;
        margin-bottom: 50px;
        flex-wrap: wrap;
    }
    
    .choir-description {
        flex: 1;
    }
    
    .choir-description h2 {
        font-size: 32px;
        color: #1f2937;
        margin-bottom: 20px;
    }
    
    .choir-description p {
        font-size: 16px;
        line-height: 1.8;
        color: #4b5563;
        margin-bottom: 15px;
    }
    
    .choir-image {
        flex: 1;
    }
    
    .choir-image img {
        width: 100%;
        border-radius: 12px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    }
    
    .facebook-link {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: #1877f2;
        color: white;
        padding: 12px 24px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 600;
        margin: 20px 0;
        transition: all 0.3s;
    }
    
    .facebook-link:hover {
        background: #145dbf;
        transform: translateY(-2px);
    }
    
    /* ============================================
       MEMBERS CAROUSEL SECTION - FULL WIDTH BACKGROUND
       ============================================ */
    .members-section {
        margin: 50px 0;
        padding: 60px 0;
        background: #f8fafc;
        width: 100%;
        position: relative;
        left: 0;
    }
    
    .members-section .section-wrapper {
        max-width: 1400px;
        margin-left: 5%;
        margin-right: 5%;
    }
    
    .members-section h2 {
        font-size: 32px;
        color: #1f2937;
        margin-bottom: 30px;
        text-align: left;
    }
    
    /* Carousel Styles */
    .carousel-container {
        position: relative;
        width: 100%;
        overflow: hidden;
    }
    
    .carousel-track {
        display: flex;
        transition: transform 0.5s ease-in-out;
        gap: 20px;
    }
    
    .carousel-card {
        flex: 0 0 calc(33.333% - 14px);
        min-width: calc(33.333% - 14px);
        background: white;
        border: 1px solid #e5e7eb;
        border-radius: 12px;
        padding: 25px;
        text-align: center;
        box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        transition: all 0.3s;
    }
    
    .carousel-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        border-color: #667eea;
    }
    
    .member-name {
        font-size: 20px;
        font-weight: 700;
        color: #1f2937;
        margin-bottom: 12px;
    }
    
    .member-details {
        font-size: 14px;
        color: #6b7280;
        margin: 8px 0;
    }
    
    .carousel-dots {
        text-align: center;
        margin-top: 25px;
    }
    
    .dot {
        display: inline-block;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: #cbd5e0;
        margin: 0 5px;
        cursor: pointer;
        transition: all 0.3s;
    }
    
    .dot.active {
        background: #667eea;
        width: 25px;
        border-radius: 10px;
    }
    
    /* ============================================
       JOIN SECTION - LEFT ALIGNED
       ============================================ */
    .join-section {
        display: flex;
        gap: 40px;
        margin: 50px 0;
        flex-wrap: wrap;
    }
    
    .form-container {
        flex: 1;
        min-width: 280px;
    }
    
    .images-container {
        flex: 1;
        min-width: 280px;
        overflow: visible;
    }
    
    .join-form h2 {
        font-size: 32px;
        color: #1f2937;
        margin-bottom: 25px;
    }
    
    .form-group {
        margin-bottom: 18px;
    }
    
    .form-group label {
        display: block;
        margin-bottom: 6px;
        font-weight: 600;
        color: #1f2937;
        font-size: 14px;
    }
    
    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 12px;
        border: 1px solid #e5e7eb;
        border-radius: 8px;
        font-size: 14px;
        transition: all 0.3s;
        background: white;
    }
    
    .form-group input:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: #667eea;
        box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    }
    
    .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        margin-bottom: 18px;
    }
    
    .submit-btn {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        padding: 12px 24px;
        border: none;
        border-radius: 8px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s;
        width: 100%;
    }
    
    .submit-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
    }
    
    /* Horizontal Image Grid */
    .image-grid-wrapper {
        width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        cursor: grab;
    }
    
    .image-grid-wrapper:active {
        cursor: grabbing;
    }
    
    .image-grid-wrapper::-webkit-scrollbar {
        height: 6px;
    }
    
    .image-grid-wrapper::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }
    
    .image-grid-wrapper::-webkit-scrollbar-thumb {
        background: #667eea;
        border-radius: 10px;
    }
    
    .image-grid-horizontal {
        display: flex;
        gap: 15px;
        width: max-content;
        padding: 5px 0 10px 0;
    }
    
    .horizontal-image {
        flex: 0 0 auto;
        width: 280px;
        height: 200px;
        object-fit: cover;
        border-radius: 12px;
        transition: transform 0.3s;
        cursor: pointer;
    }
    
    .horizontal-image:hover {
        transform: scale(1.05);
    }
    
    .back-link {
        display: inline-block;
        margin-top: 30px;
        color: #667eea;
        text-decoration: none;
        font-weight: 600;
    }
    
    .back-link:hover {
        text-decoration: underline;
    }
    
    .empty-state {
        text-align: center;
        padding: 60px 20px;
        background: #f9fafb;
        border-radius: 16px;
    }
    
    .empty-state h3 {
        font-size: 24px;
        color: #1f2937;
        margin-bottom: 10px;
    }
    
    .empty-state p {
        color: #6b7280;
    }
    
    .scroll-hint {
        text-align: center;
        margin-top: 10px;
        font-size: 12px;
        color: #6b7280;
        display: none;
    }
    
    /* ============================================
       RESPONSIVE
       ============================================ */
    @media (max-width: 1024px) {
        .carousel-card {
            flex: 0 0 calc(50% - 10px);
            min-width: calc(50% - 10px);
        }
        
        .horizontal-image {
            width: 240px;
            height: 170px;
        }
    }
    
    @media (max-width: 768px) {
        .choir-hero {
            min-height: 350px;
        }
        
        .choir-hero .hero-content {
            padding: 60px 0;
            margin-left: 20px;
        }
        
        .choir-hero h1 {
            font-size: 32px;
        }
        
        .choir-hero p {
            font-size: 16px;
        }
        
        .content-wrapper {
            margin-left: 20px;
            margin-right: 20px;
        }
        
        .members-section .section-wrapper {
            margin-left: 20px;
            margin-right: 20px;
        }
        
        .choir-description h2 {
            font-size: 24px;
        }
        
        .join-form h2 {
            font-size: 24px;
        }
        
        .choir-intro {
            flex-direction: column;
        }
        
        .join-section {
            flex-direction: column;
        }
        
        .form-row {
            grid-template-columns: 1fr;
            gap: 0;
        }
        
        .horizontal-image {
            width: 220px;
            height: 160px;
        }
        
        .carousel-card {
            flex: 0 0 100%;
            min-width: 100%;
        }
        
        .members-section h2 {
            font-size: 24px;
        }
        
        .scroll-hint {
            display: block;
        }
    }
    
    @media (max-width: 480px) {
        .choir-hero h1 {
            font-size: 28px;
        }
        
        .choir-hero p {
            font-size: 14px;
        }
        
        .choir-description h2 {
            font-size: 22px;
        }
        
        .member-name {
            font-size: 18px;
        }
        
        .horizontal-image {
            width: 180px;
            height: 140px;
        }
    }
