/* Service Pages Styles */

/* Web3 Content Styles for Service Pages */
.web3-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.content-section {
    margin-bottom: 60px;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
}

.section-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #e8f0f7;
    color: #8b9dc3;
    font-size: 28px;
    font-weight: 700;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #003d82;
    margin: 0;
}

.section-content {
    /* No padding-left for service pages */
}

.intro-text {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 30px;
}

.feature-list {
    margin-top: 30px;
}

.feature-item {
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.feature-header i {
    color: #8b9dc3;
    font-size: 20px;
}

.feature-header h3 {
    font-size: 20px;
    font-weight: 600;
    color: #003d82;
    margin: 0;
}

.feature-item p {
    font-size: 15px;
    line-height: 1.8;
    color: #333;
    margin: 0;
}

.summary-box {
    margin-top: 40px;
    padding: 25px;
    background: #f0f7ff;
    border-left: 4px solid #003d82;
    border-radius: 4px;
}

.summary-box p {
    font-size: 15px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 15px;
}

.summary-box p:last-child {
    margin-bottom: 0;
}

.highlight-text {
    font-weight: 500;
    color: #003d82;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .section-header {
        flex-direction: column;
        text-align: center;
    }

    .section-title {
        font-size: 24px;
    }

    .feature-item {
        padding: 15px;
    }
}
