/* FREELANCE ELITE SECTION */
.freelance-elite {
    padding: 64px 20px;
    background: white;
    font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    color: #0f1724;
}

.fe-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

/* LEFT IMAGE CARD */
.fe-left {
    display: flex;
    justify-content: center;
}

.fe-image-card {
    position: relative;
    width: 100%;
    max-width: 520px;
    border-radius: 14px;
    box-shadow: 0 20px 40px rgba(15, 23, 36, 0.06);
    overflow: visible;
}

.fe-image-card img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 14px;
    object-fit: cover;
}

/* Floating Badge */
.fe-badge {
    position: absolute;
    left: -18%;
    top: 18%;
    background: #ffffff;
    border-radius: 8px;
    padding: 12px 16px;
    box-shadow: 0 8px 20px rgba(15, 23, 36, 0.08);
    display: flex;
    gap: 10px;
    align-items: center;
    min-width: 170px;
    z-index: 2;
}

.fe-badge-icon {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border-radius: 8px;
    background: #dff6ff;
    display: grid;
    place-items: center;
    font-size: 18px;
}

.fe-badge-text strong {
    display: block;
    font-weight: 700;
    color: #0f1724;
}

.fe-badge-text span {
    display: block;
    color: black;
    font-size: 13px;
    margin-top: 2px;
}

/* Bottom CTA Pill */
.fe-bottom-pill {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -16px;
    background: #ff6161;
    color: #fff;
    padding: 14px 26px;
    border-radius: 12px;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(255, 97, 97, 0.12);
    white-space: nowrap;
    z-index: 2;
}

/* RIGHT CONTENT */
.fe-right {
    padding-right: 6px;
}

.fe-kicker {
    color: #ff6161;
    font-weight: 700;
    letter-spacing: 0.06em;
    font-size: 13px;
    margin: 0 0 10px;
}

.fe-title {
    margin: 0 0 18px;
    font-size: 34px;
    line-height: 1.05;
    color: #0b1320;
    font-weight: 800;
}

.fe-intro {
    margin: 0 0 14px;
    font-size: 18px;
    color: #0f1724;
}

.fe-body {
    color: black;
    font-size: 18px;
    margin-bottom: 20px;
    max-width: 680px;
}

/* Features Grid */
.fe-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 24px;
    margin-bottom: 22px;
}

.fe-feature {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.fe-dot {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    border-radius: 8px;
    background: #dff6ff;
    display: grid;
    place-items: center;
    font-weight: 700;
    color: #ff6161;
    margin-top: 2px;
}

.fe-feature h4 {
    margin: 0 0 6px;
    font-size: 18px;
    font-weight: 700;
    color: #0b1320;
}

.fe-feature p {
    margin: 0;
    color: black;
    font-size: 18px;
}

/* Signature Area */
.fe-signature {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 18px;
}

.fe-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 6px 18px rgba(15, 23, 36, 0.06);
}

.fe-name {
    font-family: "Brush Script MT", "Lucida Handwriting", cursive;
    font-size: 20px;
    color: #0b1320;
    margin-bottom: 2px;
}

.fe-role {
    font-size: 18px;
    color: black;
}

/* RESPONSIVE FIXES */
@media (max-width: 980px) {
    .fe-container {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .fe-left { order: 1; }
    .fe-right { order: 2; }
    .fe-image-card { max-width: 100%; }
    .fe-badge { left: 6%; top: 8%; }
    .fe-bottom-pill { left: 10%; transform: none; bottom: -12px; }
    .fe-title { font-size: 28px; }
}

@media (max-width: 600px) {
    .freelance-elite { padding: 36px 16px; }
    .fe-badge { display: none; }
    .fe-bottom-pill {
        left: 50%;
        transform: translateX(-50%);
    }
    .fe-title { font-size: 22px; }
    .fe-features { grid-template-columns: 1fr; }
}

/* Table Section */

.table-container {
            max-width: 1200px;
            margin: 30px auto;
            background: white;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            overflow: hidden;
        }

        h4 {
            text-align: center;
            margin: 30px 0;
            color: #2c3e50;
            font-weight: 600;
        }

        .responsive-table {
            width: 100%;
            border-collapse: collapse;
            min-width: 600px;
        }

        .responsive-table thead {
            background: linear-gradient(135deg, #3498db, #2c3e50);
            color: white;
        }

        .responsive-table th {
            padding: 18px 15px;
            text-align: center;
            font-weight: 500;
            font-size: 16px;
        }

        .responsive-table td {
            padding: 15px;
            text-align: center;
            border-bottom: 1px solid #e0e0e0;
        }

        .responsive-table tbody tr:last-child td {
            border-bottom: none;
        }

        .responsive-table tbody tr:nth-child(even) {
            background-color: #f8f9fa;
        }

        .responsive-table tbody tr:hover {
            background-color: #f1f7fd;
            transition: background-color 0.2s ease;
        }

        .document-name {
            font-weight: 500;
            text-align: left;
            color: #2c3e50;
        }

        .checkmark {
            color: #27ae60;
            font-size: 18px;
        }

        .crossmark {
            color: #e74c3c;
            font-size: 18px;
        }

        .optional {
            color: #f39c12;
            position: relative;
        }

        .optional::after {
            content: "(optional)";
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 10px;
            white-space: nowrap;
            color: #f39c12;
        }

        .responsive-container {
            width: 100%;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            border-radius: 12px;
        }

        @media screen and (max-width: 768px) {
            .responsive-table {
                font-size: 14px;
            }
            
            .responsive-table th,
            .responsive-table td {
                padding: 12px 8px;
            }
        }

        @media screen and (max-width: 480px) {
            body {
                padding: 10px;
            }
            
            h1 {
                font-size: 22px;
                margin: 20px 0;
            }
            
            .responsive-table {
                min-width: 500px;
            }
        }