/* Content styling for AdSense approval */
.content-section {
    padding: 2rem 0;
    margin-bottom: 2rem;
}

.content-section h2 {
    color: #4361ee;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.content-section h3 {
    color: #3a0ca3;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.content-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    background-color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.content-card-header {
    background-color: #4361ee;
    color: white;
    padding: 1rem 1.5rem;
}

.content-card-body {
    padding: 1.5rem;
}

.info-box {
    background-color: #f8f9fa;
    border-left: 4px solid #4361ee;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 5px 5px 0;
}

.feature-list {
    list-style-type: none;
    padding-left: 0;
}

.feature-list li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 2rem;
}

.feature-list li:before {
    content: "✓";
    color: #4361ee;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Two-column layout for features page */
@media (min-width: 992px) {
    .content-card {
        position: sticky;
        top: 20px;
    }
}

/* use-case-grid and use-case-item styles removed */

.tutorial-steps {
    counter-reset: step-counter;
    list-style-type: none;
    padding-left: 0;
}

.tutorial-steps li {
    position: relative;
    padding: 1rem 1rem 1rem 3rem;
    margin-bottom: 1rem;
    background-color: #f8f9fa;
    border-radius: 5px;
}

.tutorial-steps li:before {
    content: counter(step-counter);
    counter-increment: step-counter;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #4361ee;
    color: white;
    width: 2rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px 0 0 5px;
}

.faq-section .accordion-button:not(.collapsed) {
    background-color: #e7f0fd;
    color: #4361ee;
}

.faq-section .accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(67, 97, 238, 0.25);
}

.blog-preview {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.blog-preview:hover {
    transform: translateY(-5px);
}

.blog-preview-image {
    height: 180px;
    background-color: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-preview-content {
    padding: 1.5rem;
}

.blog-preview-date {
    color: #6c757d;
    font-size: 0.875rem;
}

.blog-preview-title {
    margin: 0.5rem 0;
    font-weight: 600;
}

.blog-preview-excerpt {
    color: #6c757d;
    margin-bottom: 1rem;
}

.cta-section {
    background-color: #4361ee;
    color: white;
    padding: 3rem 0;
    text-align: center;
    border-radius: 10px;
    margin: 3rem 0;
}

.cta-section h2 {
    color: white;
}

.cta-buttons {
    margin-top: 2rem;
}

.cta-buttons .btn {
    margin: 0 0.5rem;
    padding: 0.75rem 2rem;
}

/* use-case-grid media query removed */
