/* Why Choose Us - Narrative Styling */
.why-choose-section {
    padding: 100px 0;
    background-color: #f8fafc;
    text-align: center;
}

.why-choose-header {
    margin-bottom: 50px;
}

.why-choose-header .sub-title {
    display: block;
    color: var(--accent-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.why-choose-header h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    font-weight: 800;
    letter-spacing: -1px;
}

.why-choose-narrative {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.why-choose-narrative p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 25px;
}

.why-choose-narrative p strong {
    color: var(--primary-color);
    font-weight: 700;
}

/* Let's Get Started Section */
.started-section {
    position: relative;
    padding: 120px 0;
    background: url('../frontend/lets-get-started.jpg') no-repeat center center/cover;
    background-attachment: fixed;
    color: #fff;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.started-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(11, 33, 59, 0.75), rgba(11, 33, 59, 0.9));
    z-index: 1;
}

.started-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    padding: 0 5%;
    text-align: center;
}

.started-content h2 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: -1px;
    /* Removed redundant animation */
}

.started-content p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.9;
    line-height: 1.6;
}

.started-actions {
    display: flex;
    justify-content: center;
}

.btn-started {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 18px 45px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 800;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

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

.btn-started:hover {
    background-color: #fff;
    color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.btn-started:hover i {
    transform: translateX(5px);
}

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

/* Responsive */
@media screen and (max-width: 768px) {
    .why-choose-header h2 { font-size: 2.2rem; }
    .why-choose-narrative p { font-size: 1.1rem; }
    
    .started-section { padding: 80px 0; min-height: 400px; }
    .started-content h2 { font-size: 2.5rem; }
    .started-content p { font-size: 1.1rem; }
    .btn-started { padding: 15px 30px; font-size: 1.1rem; }
}
