/* Call to Action Section */
.cta-section {
    margin: 40px 0;
    padding: 30px;
    background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    color: #1f2937;
}

body.dark-mode .cta-section {
    background: linear-gradient(135deg, #1f2937, #111827);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    color: #f9fafb;
}

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    opacity: 0.9;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #f97316; /* Orange color */
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

body.dark-mode .btn-cta {
    background-color: #ea580c; /* Darker orange for dark mode */
    color: white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
    background-color: #ea580c; /* Darker orange on hover */
}

body.dark-mode .btn-cta:hover {
    background-color: #c2410c; /* Even darker orange on hover in dark mode */
    box-shadow: 0 6px 15px rgba(0,0,0,0.4);
}