/* Pro4 Security - Homepage Styles */

:root {
    --primary-color: #0d6efd;
    --secondary-color: #6c757d;
    --accent-color: #6610f2;
    --light-bg: #f5f7fa;
    --dark-text: #212529;
    --border-color: #e9ecef;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Offset for fixed navbar */
}

html, body {
    width: 100%;
    height: 100%;
    font-family: 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--dark-text);
    line-height: 1.6;
    background-color: #fff;
    overflow-x: hidden;
}

/* Navigation - styles now in navbar-global.css */
/* The global navbar styling is imported in base.html */

.btn-primary-custom {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    position: relative;
    overflow: hidden;
    text-transform: none;
    letter-spacing: 0.3px;
}

.btn-primary-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-primary-custom:hover::before {
    left: 100%;
}

.btn-primary-custom:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 45px rgba(102, 126, 234, 0.5);
    color: white;
}

.btn-primary-custom:active {
    transform: translateY(-2px) scale(1.02);
}

.btn-primary-custom i {
    transition: transform 0.3s ease;
}

.btn-primary-custom:hover i {
    transform: scale(1.2);
    animation: iconBounce 0.6s ease-in-out;
}

@keyframes iconBounce {
    0%, 100% { transform: scale(1.2); }
    50% { transform: scale(1.4); }
}

.btn-outline-custom i {
    transition: transform 0.3s ease;
}

.btn-outline-custom:hover i {
    transform: scale(1.2);
    animation: iconBounce 0.6s ease-in-out;
}

.btn-custom {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 14px;
}

.btn-outline-custom {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 255, 255, 0.9);
    color: white;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
}

.btn-outline-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.5s ease;
}

.btn-outline-custom:hover::before {
    left: 100%;
}

.btn-outline-custom:hover {
    background: rgba(255, 255, 255, 0.35);
    border-color: white;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
    color: white;
}

.btn-outline-custom:active {
    transform: translateY(-2px) scale(1.02);
}

/* Hero Section */
.hero-section {
    padding: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 85% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 80%, rgba(255, 255, 255, 0.12) 0%, transparent 50%);
    animation: floatParticles 25s ease-in-out infinite;
    pointer-events: none;
}

@keyframes floatParticles {
    0%, 100% { 
        transform: translateY(0) scale(1);
        opacity: 1;
    }
    50% { 
        transform: translateY(-30px) scale(1.1);
        opacity: 0.8;
    }
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.1));
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    color: white;
    margin-bottom: 30px;
    line-height: 1.2;
    text-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.3),
        0 4px 16px rgba(0, 0, 0, 0.2),
        0 8px 24px rgba(0, 0, 0, 0.25);
    letter-spacing: -0.8px;
    word-spacing: 2px;
    display: inline-block;
    max-width: 100%;
}

.hero-subtitle {
    font-size: 22px;
    color: white;
    margin-bottom: 45px;
    line-height: 1.8;
    text-shadow: 
        0 1px 4px rgba(0, 0, 0, 0.2),
        0 3px 12px rgba(0, 0, 0, 0.3),
        0 6px 18px rgba(0, 0, 0, 0.25);
    max-width: 680px;
    font-weight: 500;
    opacity: 1;
    letter-spacing: 0.3px;
}

.hero-content .btn-primary-custom {
    background: white;
    color: #667eea;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.25);
}

.hero-content .btn-primary-custom:hover {
    background: rgba(255, 255, 255, 0.95);
    color: #667eea;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.hero-content .btn-outline-custom {
    border-color: rgba(255, 255, 255, 0.9);
    color: white;
    background: rgba(255, 255, 255, 0.15);
}

.hero-shield {
    font-size: 300px;
    color: rgba(255, 255, 255, 0.2);
    animation: shieldFloat 6s ease-in-out infinite;
    filter: drop-shadow(0 10px 40px rgba(0, 0, 0, 0.3));
}

@keyframes shieldFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.cta-section {
    background: linear-gradient(135deg, #4158D0 0%, #C850C0 50%, #FFCC70 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(5deg); }
}

.cta-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 25px;
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
    line-height: 1.2;
}

.cta-text {
    font-size: 20px;
    margin-bottom: 45px;
    opacity: 0.95;
    line-height: 1.7;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* CTA Feature Badges */
.cta-section .row.fade-in-up {
    position: relative;
    z-index: 1;
}

.cta-section .col-md-4 .d-flex {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 25px 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.cta-section .col-md-4 .d-flex:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.cta-section .fa-2x {
    font-size: 2.5rem !important;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}

.cta-section .d-flex:hover .fa-2x {
    transform: scale(1.1) rotate(5deg);
}

.cta-section h6 {
    font-weight: 700;
    font-size: 1.1rem;
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.cta-section small {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Animation Classes */
.fade-in-up {
    animation: fadeInUp 0.8s ease-out both;
}

.fade-in-up.delay-1 {
    animation-delay: 0.2s;
}

.fade-in-up.delay-2 {
    animation-delay: 0.4s;
}

.fade-in-up.delay-3 {
    animation-delay: 0.6s;
}

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

/* Services/Features Section */
.services-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.08) 0%, transparent 70%);
    animation: float 15s ease-in-out infinite;
}

.services-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(118, 75, 162, 0.08) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite reverse;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.section-subtitle {
    font-size: 18px;
    color: #6c757d;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.feature-card {
    padding: 40px 30px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 25px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.25);
    border-color: rgba(102, 126, 234, 0.3);
    background: white;
}

.feature-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 10px;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}

.feature-icon i {
    font-size: 45px;
    color: white;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon i {
    transform: scale(1.1);
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    color: #2d3748;
    margin: 0;
    letter-spacing: -0.3px;
}

.feature-text {
    font-size: 15px;
    color: #718096;
    line-height: 1.7;
    flex-grow: 1;
    margin: 0;
}

.feature-card .btn-custom {
    align-self: center;
    margin-top: auto;
}

/* Stats Section */
.stats-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

.stat-item {
    padding: 40px 30px;
    text-align: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 1;
}

.stat-item:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.stat-number {
    font-size: 56px;
    font-weight: 800;
    color: white;
    display: block;
    margin-bottom: 15px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.stat-item:hover .stat-number {
    transform: scale(1.1);
}

.stat-title {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.stat-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.3), transparent);
}

.accordion {
    position: relative;
    z-index: 1;
}

.accordion-item {
    border: 2px solid rgba(102, 126, 234, 0.1);
    border-radius: 15px !important;
    margin-bottom: 15px;
    overflow: hidden;
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 10px 35px rgba(102, 126, 234, 0.15);
    border-color: rgba(102, 126, 234, 0.3);
}

.accordion-button {
    font-weight: 700;
    font-size: 17px;
    color: #2d3748;
    background-color: rgba(248, 249, 250, 0.5);
    padding: 20px 25px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: none;
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.accordion-button:focus {
    border-color: rgba(102, 126, 234, 0.4);
    box-shadow: 0 0 0 0.25rem rgba(102, 126, 234, 0.15);
}

.accordion-button:hover {
    background-color: rgba(102, 126, 234, 0.05);
}

.accordion-body {
    color: #718096;
    font-size: 15px;
    line-height: 1.8;
    padding: 25px;
    background: rgba(248, 249, 250, 0.3);
}

/* CTA Buttons */
.btn-outline-light {
    border: 2px solid white;
    color: white;
    background-color: transparent;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background-color: white;
    color: var(--primary-color);
    border-color: white;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* Container */
.container {
    max-width: 1200px;
    padding: 0 15px;
}

/* Utility Classes */
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }

.ms-auto { margin-left: auto; }
.me-2 { margin-right: 0.5rem; }
.me-3 { margin-right: 1rem; }

.text-center { text-align: center; }

.d-flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.gap-3 { gap: 1rem; }

.justify-content-center { justify-content: center; }
.justify-content-between { justify-content: space-between; }
.align-items-center { align-items: center; }

.fa-2x { font-size: 2em; }

/* Footer */
footer {
    background-color: var(--dark-text);
    color: white;
    padding: 40px 0 20px;
    margin-top: 60px;
}

footer a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #0b5ed7;
    text-decoration: underline;
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 48px;
        line-height: 1.25;
        margin-bottom: 25px;
    }

    .hero-subtitle {
        font-size: 20px;
        line-height: 1.75;
        margin-bottom: 35px;
    }

    .hero-shield {
        font-size: 220px;
    }

    .section-title {
        font-size: 38px;
    }

    .cta-title {
        font-size: 38px;
    }

    .feature-card {
        margin-bottom: 25px;
    }

    .feature-icon {
        width: 80px;
        height: 80px;
    }

    .feature-icon i {
        font-size: 40px;
    }

    .stat-number {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0.75rem 0;
    }

    .navbar-brand {
        font-size: 18px;
    }

    .nav-link {
        padding: 0.5rem 0.75rem !important;
        font-size: 13px;
    }

    .btn-primary-custom {
        padding: 14px 30px;
        font-size: 15px;
    }

    .btn-outline-custom {
        padding: 12px 28px;
        font-size: 15px;
    }

    .cta-title {
        font-size: 38px;
    }

    .cta-text {
        font-size: 18px;
    }

    .hero-section {
        min-height: 90vh;
        padding: 80px 0;
    }

    .hero-title {
        font-size: 40px;
        line-height: 1.3;
        margin-bottom: 20px;
        letter-spacing: -0.5px;
    }

    .hero-subtitle {
        font-size: 18px;
        line-height: 1.7;
        margin-bottom: 30px;
    }

    .hero-subtitle {
        font-size: 17px;
        margin-bottom: 30px;
    }

    .hero-shield {
        font-size: 180px;
        margin-top: 40px;
    }

    .hero-content .d-flex {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-content .btn-primary-custom,
    .hero-content .btn-outline-custom {
        width: 100%;
        justify-content: center;
    }
}
        padding: 80px 0 60px;
        margin-top: 50px;
        min-height: auto;
    }

    .hero-content h1 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .hero-content p {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .cta-section {
        padding: 70px 0;
    }

    .cta-title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .cta-text {
        font-size: 17px;
        margin-bottom: 35px;
    }

    .btn-primary-custom {
        padding: 12px 28px;
        font-size: 14px;
    }

    .btn-outline-custom {
        padding: 11px 26px;
        font-size: 14px;
    }

    .cta-section .col-md-4 {
        margin-bottom: 20px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-buttons .btn-custom {
        width: 100%;
    }

    .services-section,
    .stats-section,
    .faq-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .feature-card {
        padding: 20px;
        margin-bottom: 15px;
    }

    .stat-item {
        padding: 20px;
        margin-bottom: 15px;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-title {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 10px;
    }

    .navbar-brand {
        font-size: 16px;
    }

    .nav-link {
        padding: 0.25rem 0.5rem !important;
        font-size: 12px;
    }

    .btn-primary-custom {
        padding: 12px 24px;
        font-size: 13px;
    }

    .btn-outline-custom {
        padding: 11px 22px;
        font-size: 13px;
    }

    .hero-section {
        padding: 70px 0 40px;
        margin-top: 45px;
    }

    .hero-title {
        font-size: 32px;
        line-height: 1.35;
        margin-bottom: 18px;
        letter-spacing: -0.3px;
        word-spacing: 1px;
    }

    .hero-subtitle {
        font-size: 17px;
        line-height: 1.65;
        margin-bottom: 28px;
        letter-spacing: 0.2px;
    }

    .hero-shield {
        font-size: 140px;
        margin-top: 30px;
    }

    .hero-content p {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .cta-section {
        padding: 50px 0;
    }

    .cta-title {
        font-size: 26px;
    }

    .cta-text {
        font-size: 15px;
    }

    .cta-section .fa-2x {
        font-size: 2rem !important;
    }

    .cta-text {
        font-size: 14px;
    }

    .feature-title {
        font-size: 16px;
    }

    .feature-text {
        font-size: 13px;
    }
}
