/* Import common styles */
@import url('index.css');

/* Page Title Section */
.page-title-section {
    padding: 60px 0;
    background: var(--bg-light);
    text-align: center;
}

.page-title {
    font-size: 42px;
    font-weight: bold;
    color: var(--text-color);
}

/* Solutions Categories Section */
.solutions-categories-section {
    padding: 80px 0;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.solution-card {
    padding: 30px;
    background: var(--bg-light);
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.solution-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.solution-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Case Examples Section */
.case-examples-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.cases-content {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.case-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.case-item.reverse {
    direction: rtl;
}

.case-item.reverse > * {
    direction: ltr;
}

.case-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.case-text h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.case-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Structured Insights Section */
.structured-insights-section {
    padding: 80px 0;
}

.insights-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.insight-item {
    margin-bottom: 15px;
    background: var(--bg-light);
    border-radius: 5px;
    overflow: hidden;
}

.insight-question {
    width: 100%;
    padding: 20px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
    transition: background 0.3s ease;
}

.insight-question:hover {
    background: var(--bg-color);
}

.insight-icon {
    font-size: 24px;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.insight-item.active .insight-icon {
    transform: rotate(45deg);
}

.insight-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.insight-item.active .insight-answer {
    max-height: 500px;
}

.insight-answer p {
    padding: 0 20px 20px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: var(--bg-light);
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-color);
}

.cta-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-title {
        font-size: 32px;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
    }

    .case-item {
        grid-template-columns: 1fr;
    }

    .case-item.reverse {
        direction: ltr;
    }
}

