/* Article Section Styles */
.article-section {
    padding: 8rem 5% 6rem;
    background: #f8fafc;
    min-height: 100vh;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
    padding-top: 2rem;
}

.section-title h2 {
    font-size: 3rem;
    font-weight: 800;
    color: black;
    margin-bottom: 1rem;
}

.section-title p {
    font-size: 1.3rem;
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto;
}

.article-content {
    max-width: 1200px;
    margin: 0 auto;
    background: #fff;
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
    margin-top: -100px;
    border: 1px solid rgba(245, 158, 11, 0.1);
}

.article-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #f59e0b, #fbbf24);
    border-radius: 25px 25px 0 0;
}

.article-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 20px;
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.article-image:hover {
    transform: scale(1.02);
}

.article-content > p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4d4d4d;
    margin-bottom: 2rem;
    text-align: justify;
}

.article-content > p:first-of-type {
    font-size: 1.2rem;
    color: #1e293b;
    font-weight: 500;
    border-left: 4px solid #f59e0b;
    padding-left: 1.5rem;
    background: linear-gradient(45deg, rgba(245, 158, 11, 0.05), rgba(251, 191, 36, 0.05));
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.article-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e293b;
    margin: 3rem 0 1.5rem 0;
    position: relative;
    padding-left: 1rem;
}

.article-content h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 30px;
    background: linear-gradient(45deg, #f59e0b, #fbbf24);
    border-radius: 2px;
}

.article-content h3:hover {
    color: #f59e0b;
    transition: color 0.3s ease;
}

.article-content > h3 + p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #64748b;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.article-content ul {
    margin: 1.5rem 0 2.5rem 0;
    padding-left: 0;
    list-style: none;
}

.article-content ul li {
    background: #f8fafc;
    margin-bottom: 1rem;
    padding: 1.2rem 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #f59e0b;
    transition: all 0.3s ease;
    position: relative;
}

.article-content ul li:hover {
    background: rgba(245, 158, 11, 0.05);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(245, 158, 11, 0.1);
}

.article-content ul li strong {
    color: #1e293b;
    font-weight: 700;
    font-size: 1.05rem;
}

.article-content ul li::before {
    content: '●';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    color: #f59e0b;
    font-size: 1.5rem;
    font-weight: bold;
    background: #fff;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 0 0 3px #f8fafc;
}

/* Call-to-Action Buttons in Article */
.article-content .cta-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.article-content .btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 200px;
    justify-content: center;
}

.article-content .btn-primary {
    background: linear-gradient(45deg, #f59e0b, #fbbf24);
    color: #1e293b;
}

.article-content .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4);
}

.article-content .btn-secondary {
    background: transparent;
    color: #1e293b;
    border: 2px solid #f59e0b;
}

.article-content .btn-secondary:hover {
    background: #f59e0b;
    color: #fff;
    transform: translateY(-3px);
}

/* Special styling for the "Why Choose Us" section */
.article-content > p:last-of-type {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid rgba(245, 158, 11, 0.1);
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
}

.article-content > p:last-of-type::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(45deg, #f59e0b, #fbbf24);
}

/* Responsive Design for Articles */
@media (max-width: 768px) {
    .article-section {
        padding: 6rem 3% 4rem;
    }
    
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    .section-title p {
        font-size: 1.1rem;
    }
    
    .article-content {
        padding: 2rem 1.5rem;
        margin-top: -50px;
        border-radius: 20px;
    }
    
    .article-content h3 {
        font-size: 1.5rem;
        margin: 2rem 0 1rem 0;
    }
    
    .article-content > p {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .article-content > p:first-of-type {
        font-size: 1.1rem;
        padding: 1rem;
    }
    
    .article-content ul li {
        padding: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .article-content .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .article-content .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .article-image {
        max-height: 250px;
        margin: 1.5rem 0;
    }
}

@media (max-width: 480px) {
    .article-section::before {
        height: 150px;
    }
    
    .section-title {
        padding-top: 1rem;
        margin-bottom: 3rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .article-content {
        padding: 1.5rem 1rem;
        margin-top: -30px;
    }
    
    .article-content h3 {
        font-size: 1.3rem;
    }
    
    .article-content ul li::before {
        display: none;
    }
    
    .article-content ul li {
        border-left-width: 3px;
        padding-left: 1rem;
    }
}