/* Hero Section Enhancement */
.content-hero {
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-pink) 100%);
    padding: 6rem 0;
    margin-bottom: 4rem;
    position: relative;
    overflow: hidden;
    text-align: center;
    z-index: 1;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    isolation: isolate;
}

/* Enhanced shimmer effect with smoother animation */
.content-hero::before {
    content: '';
    position: absolute;
    inset: -50%;
    background: linear-gradient(
        45deg,
        transparent 0%,
        rgba(255, 255, 255, 0.08) 50%,
        transparent 100%
    );
    animation: heroShimmer 12s linear infinite;
    z-index: 1;
    transform-origin: center;
    will-change: transform;
}

/* Improved floating dots pattern */
.content-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(
        circle at 2px 2px,
        rgba(255, 255, 255, 0.1) 1px,
        transparent 0
    );
    background-size: 24px 24px;
    animation: floatBackground 20s linear infinite;
    z-index: 1;
    opacity: 0.5;
    will-change: transform;
}

/* Enhanced gradient overlay */
.content-hero .gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        transparent 20%,
        rgba(255, 255, 255, 0.1) 25%,
        transparent 30%
    );
    animation: heroGradient 8s ease-in-out infinite;
    z-index: 2;
    mix-blend-mode: overlay;
    will-change: transform;
}

/* Improved light spots */
.content-hero .light-spot {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    animation: pulseAndMove 8s ease-in-out infinite;
    will-change: transform, opacity;
}

.content-hero .light-spot:nth-child(1) {
    top: -10%;
    left: 15%;
    animation-delay: 0s;
}

.content-hero .light-spot:nth-child(2) {
    top: 40%;
    right: 10%;
    animation-delay: -2s;
}

.content-hero .light-spot:nth-child(3) {
    bottom: -10%;
    left: 30%;
    animation-delay: -4s;
}

.content-hero .container {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.content-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    animation: slideInDown 0.6s ease-out;
}

.content-hero .hero-subtitle {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    animation: slideInUp 0.6s ease-out 0.2s both;
}

/* Hero Stats Enhancement */
.content-hero .hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
}

/* FORCE WHITE TEXT - Hero Stats */
.content-hero .hero-stats .stat-number,
.content-hero .hero-stats .stat-number * {
    color: #FFFFFF !important;
    -webkit-text-fill-color: #FFFFFF !important;
    text-fill-color: #FFFFFF !important;
    background: transparent !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 3;
}

/* Override any possible gradient text effects */
.content-hero .hero-stats * {
    background: transparent !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
}

.content-hero .hero-stats .stat {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: none;
    padding: 1.5rem 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 160px;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 3;
}

.content-hero .hero-stats .stat:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.content-hero .hero-stats .stat:hover .stat-number {
    color: var(--brand-cyan) !important;
}

/* FORCE WHITE TEXT - Hero Stats */
.content-hero .hero-stats .stat-number,
.content-hero .hero-stats .stat-number * {
    color: #FFFFFF !important;
    -webkit-text-fill-color: #FFFFFF !important;
    text-fill-color: #FFFFFF !important;
    background: transparent !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 3;
}

.content-hero .hero-stats .stat-label,
.content-hero .hero-stats .stat-label * {
    color: #FFFFFF !important;
    -webkit-text-fill-color: #FFFFFF !important;
    text-fill-color: #FFFFFF !important;
    background: transparent !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    display: block;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 3;
}

/* Override any possible gradient text effects */
.content-hero .hero-stats * {
    background: transparent !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
}

/* Hero Stats Mobile Optimization */
@media (max-width: 768px) {
    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.75rem;
        margin-top: 2rem;
        justify-content: center;
        padding: 0 1rem;
    }

    .hero-stats .stat {
        flex: 1 1 calc(50% - 0.75rem);
        min-width: 130px;
        max-width: 150px;
        padding: 0.75rem;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: none;
        border-radius: 12px;
        text-align: center;
    }

    .hero-stats .stat-number {
        font-size: 1.5rem;
        margin-bottom: 0.25rem;
        color: #ffffff !important;
    }

    .hero-stats .stat-label {
        font-size: 0.875rem;
        line-height: 1.2;
        color: rgba(255, 255, 255, 0.9) !important;
    }
}

/* Even smaller screens */
@media (max-width: 360px) {
    .hero-stats {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats .stat {
        width: 100%;
        max-width: 200px;
        flex: none;
    }
}

/* Content Header */
.content-header {
    margin-bottom: 2rem;
}

/* Content Filters */
.content-filters {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 2rem;
}

.category-filter {
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    background: white;
    min-width: 200px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s ease;
}

.category-filter:hover {
    border-color: var(--brand-primary);
}

/* Content Grid Enhancement */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
    margin: 4rem auto;
    padding: 0 1rem;
    max-width: 1400px;
    animation: fadeIn 0.6s ease-out;
}

.content-card {
    background: white;
    border-radius: 20px;
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.content-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--brand-primary);
}

.content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-cyan), var(--brand-pink));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.content-card.premium-content::before {
    background: var(--brand-purple);
    opacity: 1;
}

/* Premium Content Marker */
.premium-marker {
    background: var(--brand-purple);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Content Stats Enhancement */
.content-stat:nth-child(1) .stat-icon {
    color: var(--brand-cyan);
}
.content-stat:nth-child(2) .stat-icon {
    color: var(--brand-pink);
}
.content-stat:nth-child(3) .stat-icon {
    color: var(--brand-orange);
}

/* Enhanced Progress Bars */
.progress-bar {
    background: linear-gradient(90deg, var(--brand-cyan), var(--brand-pink));
}

.content-card:hover::before {
    opacity: 1;
}

.content-card-inner {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Content Grid Link Styles */
.content-grid a {
    text-decoration: none;
}

.content-card a {
    text-decoration: none;
}

.content-title a {
    text-decoration: none;
    color: var(--brand-primary);
}

/* Ensure hover states maintain no underline */
.content-grid a:hover,
.content-card a:hover,
.content-title a:hover {
    text-decoration: none;
}

/* Typography and Content Styling */
h1:not(.hero h1):not(.content-hero h1),
h2:not(.hero h2):not(.content-hero h2),
h3:not(.hero h3):not(.content-hero h3),
.section-title,
.content-title,
.article-content h1,
.article-content h2,
.article-content h3,
.article-title {
    color: var(--brand-primary) !important;
}

/* Keep hero section headings white */
.hero h1,
.hero h2,
.hero h3,
.content-hero h1,
.content-hero h2,
.content-hero h3,
.cta h2,
.content-cta h2 {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}

/* Content Grid Headings - Use brand color */
.content-title {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.25rem;
    transition: color 0.3s ease;
}

.content-card .content-title,
.content-card .content-title a {
    color: var(--brand-primary) !important;
}

.content-card:hover .content-title,
.content-card:hover .content-title a {
    color: var(--brand-primary-dark) !important;
}

.content-title a:hover {
    background-size: 100% 2px;
}

.content-excerpt {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    height: 3.2em; /* 2 lines × 1.6 line-height */
    position: relative;
    cursor: pointer;
}

/* Expand functionality for mobile */
.content-excerpt.expanded {
    -webkit-line-clamp: unset;
    height: auto;
}

.content-excerpt::after {
    content: '...';
    position: absolute;
    right: 0;
    bottom: 0;
    background: white;
    padding-left: 4px;
}

.content-excerpt.expanded::after {
    display: none;
}

.content-meta {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-light);
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    font-size: 0.95rem;
}

.content-rating .stars {
    color: var(--brand-orange);
    display: inline-flex;
    gap: 0.25rem;
}

.content-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
}

.content-meta-item i {
    color: var(--brand-primary);
    opacity: 0.8;
}

.content-category {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 1rem;
    background: var(--bg-gray-50);
    border-radius: 20px;
    color: var(--brand-primary);
    font-weight: 500;
    transition: all 0.3s ease;
}

.content-category:hover {
    background: var(--brand-pink);
    color: white;
    transform: translateY(-2px);
}

/* Read More Button Enhancement */
.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 2rem;
    padding: 1rem 1.5rem;
    background: var(--brand-primary);
    color: white;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.read-more::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 0%, rgba(255,255,255,0.2) 50%, transparent 100%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.read-more:hover {
    transform: translateY(-2px);
}

.read-more:hover::before {
    transform: translateX(100%);
}

/* Error and Loading States */
.content-error {
    text-align: center;
    padding: 3rem 2rem;
    background: #fee2e2;
    border: 1px solid #fca5a5;
    border-radius: 12px;
    color: #991b1b;
    margin: 2rem auto;
    max-width: 600px;
    animation: fadeIn 0.3s ease-out;
}

.content-loader {
    text-align: center;
    padding: 3rem 0;
    background: var(--bg-gray-50);
    border-radius: 16px;
    margin: 2rem 0;
    display: none;
}

.content-loader.visible {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    animation: fadeIn 0.3s ease-out;
}

.loader-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--border-light);
    border-top-color: var(--brand-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Animations */
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.1;
    }
    50% {
        /* New optimized keyframe animations */
@keyframes heroShimmer {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

@keyframes floatBackground {
    0% { transform: translate(0, 0); }
    100% { transform: translate(24px, 24px); }
}

@keyframes heroGradient {
    0%, 100% { transform: translateX(-100%) skewX(-15deg); }
    50% { transform: translateX(100%) skewX(-15deg); }
}

@keyframes pulseAndMove {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(20px, -20px) scale(1.2);
        opacity: 0.8;
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Section Headers */
.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--brand-primary);
    margin-bottom: 2rem;
    text-align: center;
}

/* Article Content Headings */
.article-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 2.5rem 0 1rem;
    position: relative;
    padding-bottom: 1rem;
}

.article-content h2::after {
    background: var(--brand-primary) !important;
}

.article-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
}

/* Mobile Responsive Enhancement */
@media (max-width: 768px) {
    /* Hero section mobile adjustments */
    .content-hero h1 {
        font-size: 2rem;
    }

    .content-hero p {
        font-size: 1.1rem;
    }

    .content-title {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .article-content h2 {
        font-size: 1.6rem;
    }

    .article-content h3 {
        font-size: 1.3rem;
    }

    /* Hero section mobile adjustments */
    .content-hero {
        padding: 3rem 1rem;
        text-align: center;
    }

    .content-hero h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .content-hero .hero-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
        margin-bottom: 2rem;
    }

    /* Content grid mobile adjustments */
    .content-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 2rem auto;
        padding: 0 1rem;
    }

    .content-card {
        border-radius: 12px;
    }

    .content-card-inner {
        padding: 1.5rem;
    }

    /* Adjust title size for mobile */
    .content-title {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }

    /* Meta information mobile adjustments */
    .content-meta {
        flex-wrap: wrap;
        gap: 0.75rem;
        padding-top: 1rem;
    }

    .content-meta-item {
        font-size: 0.85rem;
    }

    .content-category {
        padding: 0.25rem 0.75rem;
        font-size: 0.85rem;
    }

    /* Adjust read more button for mobile */
    .read-more {
        width: 100%;
        justify-content: center;
        padding: 0.75rem 1rem;
        margin-top: 1rem;
        font-size: 0.95rem;
    }

    /* Content filters mobile adjustment */
    .content-filters {
        flex-direction: column;
        align-items: stretch;
    }

    .category-filter {
        width: 100%;
    }
}

/* Hero stats mobile optimization */
@media (max-width: 768px) {
    .hero-stats {
        padding: 0 1rem;
    }

    .hero-stats .stat {
        padding: 1rem;
        min-width: unset;
        width: 100%;
        max-width: 240px;
        margin: 0 auto;
    }
}

/* Enhanced CTA Section */
.content-cta {
    margin-top: 6rem;
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--brand-primary) 0%, #1d4ed8 100%);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    text-align: center;
    isolation: isolate;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(29, 78, 216, 0.25);
}

/* Animated gradient background */
.content-cta::before {
    content: '';
    position: absolute;
    inset: -50%;
    background: linear-gradient(
        45deg,
        transparent 0%,
        rgba(255, 255, 255, 0.08) 50%,
        transparent 100%
    );
    animation: shimmer 8s linear infinite;
    z-index: 0;
}

/* Floating dots pattern */
.content-cta::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(
        circle at 2px 2px,
        rgba(255, 255, 255, 0.1) 1px,
        transparent 0
    );
    background-size: 24px 24px;
    animation: float 15s linear infinite;
    z-index: 1;
    opacity: 0.5;
}

.content-cta-inner {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

/* Enhanced icon styling */
.content-cta-icon {
    width: 140px;
    height: 140px;
    margin: 0 auto 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: white;
    transform: rotate(-5deg);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Glowing effect behind icon */
.content-cta-icon::before {
    content: '';
    position: absolute;
    inset: -10px;
    background: radial-gradient(
        circle at center,
        rgba(255, 255, 255, 0.2) 0%,
        transparent 70%
    );
    border-radius: inherit;
    z-index: -1;
    animation: pulse 2s ease-in-out infinite;
}

/* Floating elements around icon */
.content-cta-icon::after {
    content: '✨';
    position: absolute;
    top: -15px;
    right: -15px;
    font-size: 2rem;
    animation: float 3s ease-in-out infinite;
}

.content-cta:hover .content-cta-icon {
    transform: rotate(0deg) scale(1.05);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
}

/* Enhanced text styling */
.content-cta h2 {
    color: white;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
    background: linear-gradient(to right, #ffffff, #e2e8f0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.content-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.4rem;
    margin-bottom: 3rem;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Enhanced button styling */
.content-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: white;
    color: var(--brand-primary);
    padding: 1.5rem 3rem;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1.25rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

/* Button hover effect */
.content-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(255, 255, 255, 0.6) 50%,
        transparent 100%
    );
    transform: translateX(-100%);
    transition: transform 0.75s cubic-bezier(0.4, 0, 0.2, 1);
}

.content-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.4);
    background: #f8fafc;
}

.content-cta-btn:hover::before {
    transform: translateX(100%);
}

/* Floating decorative elements */
.content-cta-decoration {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: white;
    opacity: 0.2;
    pointer-events: none;
}

.content-cta-decoration:nth-child(1) {
    top: 20%;
    left: 10%;
    animation: float 4s ease-in-out infinite;
}

.content-cta-decoration:nth-child(2) {
    top: 60%;
    right: 15%;
    animation: float 6s ease-in-out infinite reverse;
}

/* Animations */
@keyframes shimmer {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

/* Remove any gradient background for CTA headings */
.content-cta h2,
.content-cta h2 *,
h2.content-cta-heading {
    color: #FFFFFF !important;
    -webkit-text-fill-color: #FFFFFF !important;
    text-fill-color: #FFFFFF !important;
    background: none !important;
    background-image: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
}

/* Remove any background gradient or text fill properties */
.cta h2 {
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
}

/* Mobile Styles */
@media (max-width: 768px) {
    .content-cta {
        margin-top: 4rem;
        padding: 4rem 1.5rem;
        border-radius: 16px;
    }

    .content-cta h2 {
        font-size: 2.25rem;
    }

    .content-cta p {
        font-size: 1.2rem;
        margin-bottom: 2.5rem;
    }

    .content-cta-icon {
        width: 110px;
        height: 110px;
        font-size: 2.75rem;
        border-radius: 28px;
        margin-bottom: 2rem;
    }

    .content-cta-btn {
        width: 100%;
        justify-content: center;
        padding: 1.25rem 2rem;
    }
}

/* Add high-contrast support */
@media (forced-colors: active) {
    .content-cta {
        border: 2px solid ButtonText;
    }
    
    .content-cta-btn {
        border: 2px solid ButtonText;
    }
}