/* ============================================
   MODERN INDEX PAGE - FARKLITEŞTIRILMIŞ TASARIM
   Split-screen, Modern Cards, Gradient Effects
   ============================================ */

/* ============================================
   HERO MODERN - Split Screen with Image
   ============================================ */
.hero-modern {
    min-height: 90vh;
    background: linear-gradient(135deg, #0a2540 0%, #1a3a5f 100%);
    position: relative;
    display: flex;
    align-items: center;
    padding: 4rem 0;
    overflow: hidden;
}

.hero-modern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(201, 169, 97, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(201, 169, 97, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero-modern-content {
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(201, 169, 97, 0.15);
    border: 1px solid rgba(201, 169, 97, 0.3);
    color: var(--gold);
    padding: 0.625rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn-hero-primary,
.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.125rem 2.25rem;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 1.0625rem;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.btn-hero-primary {
    background: var(--gold);
    color: var(--navy);
}

.btn-hero-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-icon {
    font-size: 1.25rem;
}

.hero-trust {
    display: flex;
    gap: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.trust-icon {
    font-size: 2rem;
}

.trust-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.trust-text strong {
    font-size: 1.5rem;
    color: var(--gold);
    font-weight: 700;
}

.trust-text span {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.hero-visual {
    position: relative;
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-decorative {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-shape {
    position: absolute;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.1), rgba(201, 169, 97, 0.05));
    animation: float 6s ease-in-out infinite;
}

.hero-shape-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    right: 15%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    animation: float 8s ease-in-out infinite 2s;
}

.hero-shape-3 {
    width: 150px;
    height: 150px;
    top: 40%;
    right: 30%;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.08), transparent);
    animation: float 7s ease-in-out infinite 1s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.hero-credentials {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem;
}

.credential-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: 1.75rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.credential-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.credential-icon {
    width: 60px;
    height: 60px;
    background: var(--gold);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.credential-content h3,
.credential-content .credential-title {
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    line-height: 1.2;
    display: block;
}

.credential-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9375rem;
    margin: 0;
}

/* ============================================
   SERVICES SHOWCASE - Interactive Cards
   ============================================ */
.services-showcase {
    padding: 7rem 0;
    background: var(--white);
}

/* ============================================
   SERVICE ACCORDION
   ============================================ */
.services-accordion {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-accordion-item {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.service-accordion-item:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow);
}

.service-accordion-item.active {
    border-color: var(--navy);
    box-shadow: var(--shadow-md);
}

.service-accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 2.5rem;
    cursor: pointer;
    transition: var(--transition);
    gap: 2rem;
}

.service-accordion-header:hover {
    background: var(--gray-50);
}

.service-accordion-item.active .service-accordion-header {
    background: var(--gray-50);
}

.service-header-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex: 1;
}

.service-header-text {
    flex: 1;
}

.service-header-text .service-title {
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.service-header-text .service-desc {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.service-accordion-toggle {
    width: 48px;
    height: 48px;
    background: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.25rem;
    font-weight: 700;
    transition: var(--transition);
    flex-shrink: 0;
}

.service-accordion-item.active .service-accordion-toggle {
    background: var(--gold);
    color: var(--navy);
    transform: rotate(180deg);
}

.service-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-accordion-item.active .service-accordion-content {
    max-height: 1000px;
}

.service-articles {
    padding: 0 2.5rem 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-article {
    background: var(--gray-50);
    padding: 1.5rem 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    text-decoration: none;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: var(--transition);
    position: relative;
}

.service-article:hover {
    background: var(--white);
    border-color: var(--gold);
    transform: translateX(8px);
    box-shadow: var(--shadow);
}

.service-article h4 {
    color: var(--navy);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.service-article p {
    color: var(--text);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.article-arrow {
    color: var(--gold);
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    transition: var(--transition);
}

.service-article:hover .article-arrow {
    transform: translateX(4px);
}

/* Keep old service card styles for compatibility */

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-label {
    display: inline-block;
    background: var(--navy);
    color: var(--gold);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-label.light {
    background: rgba(255, 255, 255, 0.15);
    color: var(--gold);
}

.section-title {
    font-size: 2.75rem;
    color: var(--navy);
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.section-title.light {
    color: var(--white);
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* Services Grid Modern */
.services-grid-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    justify-items: center;
}

/* View All Button */
.view-all-categories {
    text-align: center;
    margin-top: 3rem;
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    background: transparent;
    border: 2px solid var(--navy);
    color: var(--navy);
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: var(--transition);
}

.btn-view-all:hover {
    background: var(--navy);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.services-modern-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-modern-card {
    background: var(--white);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    min-height: 280px;
    max-height: 300px;
    max-width: 300px;
}

.service-modern-card:hover {
    border-color: var(--gold);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(18, 52, 86, 0.02) 100%);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
}

.service-icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.service-modern-card:hover .service-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.service-icon {
    font-size: 2rem;
}

.service-title {
    font-size: 1.25rem;
    color: var(--navy);
    margin-bottom: 0.75rem;
    font-weight: 700;
    line-height: 1.3;
}

.service-desc {
    color: var(--text);
    line-height: 1.5;
    margin-bottom: 1rem;
    flex-grow: 1;
    font-size: 0.9rem;
}

.service-link-arrow {
    color: var(--gold);
    font-size: 1.25rem;
    font-weight: 700;
    transition: var(--transition);
}

.service-modern-card:hover .service-link-arrow {
    transform: translateX(8px);
}

/* ============================================
   WHY CHOOSE US - Split with Stats
   ============================================ */
.why-choose-section {
    padding: 7rem 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    position: relative;
    overflow: hidden;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 5rem;
    align-items: center;
}

.why-choose-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
}

.why-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.why-feature {
    display: flex;
    gap: 1rem;
}

.why-feature-icon {
    width: 40px;
    height: 40px;
    background: var(--gold);
    color: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.why-feature-content h4 {
    color: var(--gold);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.why-feature-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.why-choose-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition);
}

.stat-box:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.75rem;
    font-family: 'Cormorant Garamond', serif;
}

.stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 500;
}

/* ============================================
   PROCESS TIMELINE
   ============================================ */
.process-section {
    padding: 7rem 0;
    background: var(--gray-50);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.process-step {
    position: relative;
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--gray-200);
    transition: var(--transition);
}

.process-step:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.process-step::after {
    content: '→';
    position: absolute;
    top: 50%;
    right: -2.5rem;
    transform: translateY(-50%);
    font-size: 2rem;
    color: var(--gold);
    font-weight: 700;
}

.process-step:last-child::after {
    display: none;
}

.process-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 1rem;
    font-family: 'Cormorant Garamond', serif;
}

.process-content h3 {
    color: var(--navy);
    margin-bottom: 0.75rem;
    font-weight: 700;
    font-size: 1.25rem;
}

.process-content p {
    color: var(--text);
    line-height: 1.7;
    font-size: 0.9375rem;
}

/* ============================================
   CTA BANNER - Full Width
   ============================================ */
.cta-banner {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    padding: 4.5rem 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05);
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-banner-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.cta-banner-text h2 {
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-banner-text p {
    font-size: 1.125rem;
    color: var(--navy-dark);
    opacity: 0.9;
}

.cta-banner-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.btn-cta-phone,
.btn-cta-form {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2rem;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 1.0625rem;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.btn-cta-phone {
    background: var(--navy);
    color: var(--white);
}

.btn-cta-phone:hover {
    background: var(--navy-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-cta-form {
    background: var(--white);
    color: var(--navy);
}

.btn-cta-form:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

/* ============================================
   LATEST ARTICLES - Preview Cards
   ============================================ */
.latest-articles {
    padding: 7rem 0;
    background: var(--white);
}

.articles-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.article-preview {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.article-preview:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}

.article-preview-image {
    height: 240px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.article-preview-image::before {
    content: '⚖️';
    font-size: 5rem;
    opacity: 0.15;
}

.article-preview-image::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.1) 0%, transparent 60%);
}

.article-category {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: var(--gold);
    color: var(--navy);
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
}

.article-preview-content {
    padding: 2rem;
}

.article-preview-content h3 {
    margin-bottom: 1rem;
}

.article-preview-content h3 a {
    color: var(--navy);
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
    transition: var(--transition);
}

.article-preview-content h3 a:hover {
    color: var(--gold);
}

.article-preview-content p {
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.article-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.article-link:hover {
    gap: 0.75rem;
    color: var(--gold-dark);
}

.articles-footer {
    text-align: center;
}

.btn-all-articles {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--navy);
    color: var(--white);
    padding: 1.125rem 2.25rem;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.btn-all-articles:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .why-choose-grid {
        gap: 3rem;
    }
}

@media (max-width: 968px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-visual {
        height: 400px;
    }
    
    .hero-shape {
        display: none;
    }
    
    .hero-credentials {
        padding: 1rem;
    }
    
    .credential-card {
        padding: 1.25rem 1.5rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .cta-banner-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .cta-banner-actions {
        justify-content: center;
    }
    
    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-step::after {
        display: none;
    }
}

@media (max-width: 1200px) {
    .services-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-modern {
        min-height: auto;
        padding: 3rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1.0625rem;
    }
    
    .hero-trust {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .services-modern-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid-modern {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .services-grid-modern {
        grid-template-columns: 1fr;
    }
    
    .service-modern-card {
        min-height: 280px;
        max-width: 100%;
    }
    
    .service-accordion-header {
        padding: 1.5rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    
    .service-header-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        width: 100%;
    }
    
    .service-accordion-toggle {
        align-self: center;
    }
    
    .service-articles {
        padding: 0 1.5rem 1.5rem;
    }
    
    .service-article {
        flex-direction: column;
        padding: 1.25rem 1.5rem;
        gap: 1rem;
    }
    
    .service-article h4 {
        font-size: 1rem;
    }
    
    .service-article p {
        font-size: 0.875rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .why-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .why-choose-stats {
        grid-template-columns: 1fr;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
    }
    
    .cta-banner {
        padding: 3rem 0;
    }
    
    .cta-banner-text h2 {
        font-size: 2rem;
    }
    
    .cta-banner-actions {
        flex-direction: column;
    }
    
    .articles-slider {
        grid-template-columns: 1fr;
    }
}

