/* Container and Layout */
.adsense-content-container {
    width: 100%;
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 1.5rem;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #2d3748;
    line-height: 1.7;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

/* Headings and Paragraphs */
.content-block h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #bac1ce;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.content-block p {
    font-size: 1rem;
    color: #babbbd;
    margin-bottom: 1rem;
}

/* Category Grid */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.category-card {
    background-color: #f7fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 1.5rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.category-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2b6cb0;
    margin-bottom: 0.5rem;
}

.category-card p {
    font-size: 0.925rem;
    margin-bottom: 0;
}

/* Highlighted Box */
.highlighted-box {
    background-color: #ebf8ff;
    border-left: 4px solid #3182ce;
    padding: 1.5rem 2rem;
    border-radius: 0 8px 8px 0;
}

.highlighted-box ul {
    margin-top: 1rem;
    padding-left: 1.25rem;
}

.highlighted-box li {
    margin-bottom: 0.5rem;
    color: #c9cacc;
}

/* FAQ Styling */
.faq-section {
    border-top: 1px solid #e2e8f0;
    padding-top: 2rem;
}

.faq-item {
    margin-bottom: 1.5rem;
}

.faq-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #d5dae4;
    margin-bottom: 0.35rem;
}

.faq-item p {
    font-size: 0.95rem;
    color: #c6c8ca;
}



/* Use Cases Grid Styles */
.use-cases-grid {
    width: 100%;
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.use-case-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 1.25rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.use-case-icon {
    font-size: 1.75rem;
    line-height: 1;
    background-color: #edf2f7;
    padding: 0.5rem;
    border-radius: 6px;
    flex-shrink: 0;
}

.use-case-card h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #d0d1d3;
    margin-bottom: 0.35rem;
}

.use-case-card p {
    font-size: 0.9rem;
    color: #4a5568;
    margin-bottom: 0;
    line-height: 1.5;
}

/* Responsive Rules */
@media (max-width: 768px) {
    .adsense-content-container {
        margin: 1.5rem auto;
        padding: 0 1rem;
    }

    .content-block h2 {
        font-size: 1.4rem;
    }

    .highlighted-box {
        padding: 1.25rem;
    }
}