.cc-container {
    width: 100%;
    margin: 0 auto;
    font-family: inherit;
}

.cc-header {
    margin-bottom: 40px;
}

.cc-subtitle-wrapper {
    display: inline-block;
    position: relative;
    margin-bottom: 10px;
}

.cc-subtitle-wrapper::before,
.cc-subtitle-wrapper::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 1px;
    background-color: currentColor;
    opacity: 0.5;
}

.cc-subtitle-wrapper::before {
    right: 100%;
    margin-right: 10px;
}

.cc-subtitle-wrapper::after {
    left: 100%;
    margin-left: 10px;
}

.cc-subtitle {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.cc-title {
    font-size: 32px;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}

.cc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.cc-card {
    display: flex;
    align-items: flex-start;
    text-decoration: none;
    transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

.cc-card:hover {
    text-decoration: none;
}

.cc-card-icon {
    flex-shrink: 0;
    margin-right: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.cc-card-icon i,
.cc-card-icon svg {
    display: block;
    transition: fill 0.3s ease;
}

.cc-card-body {
    flex-grow: 1;
}

.cc-card-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 8px 0;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.cc-card-desc {
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.cc-btn-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
}

.cc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    outline: none;
}

.cc-btn:hover {
    text-decoration: none;
}

.cc-btn:focus {
    outline: 2px solid #1bbc9b;
    outline-offset: 2px;
}

.cc-btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cc-btn-icon-left {
    margin-right: 8px;
}

.cc-btn-icon-right {
    margin-left: 8px;
}

.cc-btn-icon svg,
.cc-btn-icon i {
    width: 1em;
    height: 1em;
}

/* --- Card Entrance Animations --- */
.cc-animate {
    animation-duration: 0.8s;
    animation-fill-mode: both;
    animation-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
}

@keyframes ccFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.cc-anim-fade-in {
    animation-name: ccFadeIn;
}

@keyframes ccFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.cc-anim-fade-in-up {
    animation-name: ccFadeInUp;
}

@keyframes ccZoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
.cc-anim-zoom-in {
    animation-name: ccZoomIn;
}

@keyframes ccSlideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
.cc-anim-slide-in-left {
    animation-name: ccSlideInLeft;
}

@media (max-width: 1024px) {
    .cc-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .cc-grid {
        grid-template-columns: 1fr;
    }
}
