.panda-comparison-container {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #333;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.panda-cards-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

@media (min-width: 992px) {
    .panda-cards-wrapper {
        flex-direction: row;
        align-items: stretch;
        justify-content: center;
    }
}

.panda-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 500px;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.panda-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.panda-card-featured {
    border: 2px solid #36454F;
    transform: scale(1);
    z-index: 2;
}

@media (min-width: 992px) {
    .panda-card-featured {
        transform: scale(1.05);
    }
    .panda-card-featured:hover {
        transform: scale(1.07) translateY(-5px);
    }
    .panda-card-standard:hover {
        transform: translateY(-5px);
    }
}

.panda-badge {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: #36454F;
    color: #fff;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.panda-card-image-wrap {
    padding: 20px 20px 0;
    overflow: hidden;
}

.panda-card-image-wrap img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px; /* Controlled by Elementor slider as well */
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.panda-card:hover .panda-card-image-wrap img {
    transform: scale(1.03);
}

.panda-card-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.panda-card-title {
    margin: 0 0 10px;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    color: #36454F;
    transition: color 0.3s ease;
}

.panda-card-summary {
    font-size: 1rem;
    line-height: 1.5;
    text-align: center;
    color: #666;
    margin-bottom: 25px;
}

.panda-section-title {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: #999;
}

.panda-uses-list, .panda-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
}

.panda-uses-list li {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 5px;
    position: relative;
    padding-left: 15px;
    color: #555;
    transition: transform 0.2s ease;
}

.panda-uses-list li:hover {
    transform: translateX(3px);
}

.panda-uses-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #36454F;
}

.panda-features-list li {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    transition: transform 0.2s ease;
}

.panda-features-list li:hover {
    transform: translateX(3px);
}

.panda-check, .panda-highlight-check {
    font-weight: bold;
    margin-right: 10px;
    color: #36454F;
}

.panda-highlight-box {
    background-color: #f9f9fa;
    border-radius: 12px;
    padding: 20px;
    margin-top: auto;
    border: 1px solid rgba(0,0,0,0.03);
    transition: background-color 0.3s ease;
}

.panda-card:hover .panda-highlight-box {
    background-color: #f1f1f3;
}

.highlight-list li {
    color: #111;
}

.panda-quotes-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 50px;
}

@media (min-width: 992px) {
    .panda-quotes-wrapper {
        flex-direction: row;
        justify-content: center;
    }
}

.panda-quote-col {
    flex: 1;
    max-width: 500px;
    text-align: center;
    padding: 0 20px;
}

.panda-quote {
    font-size: 1.2rem;
    font-style: italic;
    font-weight: 600;
    color: #36454F;
    margin: 0;
    position: relative;
    display: inline-block;
}

.panda-quote::before, .panda-quote::after {
    opacity: 0.3;
    font-size: 1.5em;
    line-height: 0;
    vertical-align: -0.2em;
}
