
    /* Testimonial Section Container */
    .ikono-feedback-section {
        max-width: 1200px;
        margin: 60px auto;
        padding: 0 20px;
        font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    }

    .ikono-feedback-header {
        text-align: center;
        margin-bottom: 50px;
    }

    .ikono-feedback-header h2 {
        font-size: 36px;
        color: #1a1a1a;
        margin-bottom: 15px;
        font-weight: 700;
    }

    .ikono-feedback-header p {
        font-size: 16px;
        color: #666;
        max-width: 600px;
        margin: 0 auto;
    }

    /* Grid Layout */
    .ikono-testimonial-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 30px;
    }

    /* Individual Card */
    .ikono-testimonial-card {
        background: #ffffff;
        border-radius: 10px;
        padding: 40px 30px 30px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        position: relative;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border-top: 4px solid #0056b3; 
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .ikono-testimonial-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    }

    /* Quote Icon */
    .ikono-testimonial-card::before {
        content: "\201C";
        font-family: Georgia, serif;
        font-size: 80px;
        color: #e9ecef;
        position: absolute;
        top: -10px;
        left: 20px;
        line-height: 1;
        z-index: 0;
    }

    /* Review Text */
    .ikono-review-text {
        font-size: 15px;
        line-height: 1.6;
        color: #555;
        position: relative;
        z-index: 1;
        margin-bottom: 25px;
        font-style: italic;
    }

    /* Client Info Footer */
    .ikono-client-info {
        border-top: 1px solid #eee;
        padding-top: 20px;
        display: flex;
        align-items: center;
    }

    /* Client Avatar (Initials) */
    .ikono-client-avatar {
        width: 45px;
        height: 45px;
        background-color: #f0f4f8;
        color: #0056b3;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        font-size: 18px;
        margin-right: 15px;
        flex-shrink: 0;
    }

    .ikono-client-details h4 {
        margin: 0 0 4px 0;
        font-size: 16px;
        color: #222;
    }

    .ikono-client-details p {
        margin: 0;
        font-size: 13px;
        color: #777;
        line-height: 1.4;
    }

    .ikono-client-company {
        font-weight: 600;
        color: #0056b3;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .ikono-feedback-header h2 {
            font-size: 28px;
        }
        .ikono-testimonial-card {
            padding: 30px 20px 20px;
        }
    }
