.desc-article{
    text-align: left;
}
.page-content {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(134, 222, 236, 0.15);
    padding: 40px;
    position: relative;
    overflow: hidden;
    text-align: left;
}

.page-content:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #4a6ee0;
}

.page-content h2 {
    color: #2c3e50;
    font-size: 32px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #eaf9fc;
    position: relative;
}

.page-content h2:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100px;
    height: 2px;
    background-color: #4a6ee0;
}

.page-content h3 {
    color: #2c3e50;
    font-size: 24px;
    margin: 30px 0 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eaeaea;
    position: relative;
}

.page-content h3:after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 60px;
    height: 2px;
    background-color: #4a6ee0;
}

.page-content h3 i {
    margin-right: 10px;
    color: #4a6ee0;
}

.highlight {
    color: #4a6ee0;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    margin: 25px 0 15px;
}

.highlight i {
    margin-right: 10px;
    font-size: 22px;
}

.highlight-box {
    background: linear-gradient(135deg, #f0f4ff 0%, #e6ecfd 100%);
    border-left: 4px solid #4a6ee0;
    padding: 20px;
    border-radius: 0 8px 8px 0;
    margin: 25px 0;
    box-shadow: 0 3px 10px rgba(74, 110, 224, 0.1);
}

.mission-box {
    background: linear-gradient(135deg, #f0fbfd 0%, #e6f7fb 100%);
    border-left: 4px solid #4a6ee0;
    padding: 20px;
    border-radius: 0 8px 8px 0;
    margin: 30px 0;
    box-shadow: 0 3px 10px rgba(134, 222, 236, 0.1);
}

.mission-box p {
    margin-bottom: 10px;
}

.image-container {
    margin: 30px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.image-container img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.image-container:hover img {
    transform: scale(1.02);
}

.stats-container {
    display: flex;
    justify-content: space-around;
    margin: 30px 0;
    text-align: center;
    flex-wrap: wrap;
}

.stat-item {
    flex: 1;
    min-width: 200px;
    padding: 20px;
    margin: 10px;
    background: #f8fdff;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(134, 222, 236, 0.15);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #4a6ee0;
    margin-bottom: 5px;
}

.stat-text {
    font-size: 16px;
    color: #555;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.service-item {
    background: #f8fdff;
    padding: 20px;
    border-radius: 8px;
    border-left: 3px solid #4a6ee0;
    transition: all 0.3s ease;
}

.service-item:hover {
    background: #e6f7fb;
    transform: translateX(5px);
}

.service-item h3 {
    color: #2c3e50;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.service-item h3 i {
    color: #4a6ee0;
    margin-right: 10px;
}

.file-types-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.file-type-card {
    background: #f8f9ff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 3px 10px rgba(230, 233, 255, 0.5);
    border-top: 3px solid #4a5ee0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.file-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(74, 94, 224, 0.2);
}

.file-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #4a5ee0, #6a7afb);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: white;
    font-size: 30px;
}

.file-name {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
}

.file-desc {
    font-size: 14px;
    color: #666;
}

.recommendation-box {
    background: linear-gradient(135deg, #e8f5e9, #f1f8e9);
    border-left: 4px solid #4caf50;
    padding: 20px;
    border-radius: 0 8px 8px 0;
    margin: 30px 0;
    box-shadow: 0 3px 10px rgba(76, 175, 80, 0.1);
}

.recommendation-title {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.recommendation-title i {
    color: #4caf50;
    margin-right: 10px;
}
.guarantee-container {
    display: flex;
    justify-content: space-around;
    margin: 40px 0;
    text-align: center;
    flex-wrap: wrap;
}

.guarantee-item {
    flex: 1;
    min-width: 200px;
    padding: 20px;
    margin: 10px;
    background: #f8f9ff;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(230, 233, 255, 0.5);
    transition: transform 0.3s ease;
}

.guarantee-item:hover {
    transform: translateY(-5px);
}

.guarantee-icon {
    font-size: 40px;
    color: #4a5ee0;
    margin-bottom: 10px;
}

.guarantee-title {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
}

.guarantee-desc {
    font-size: 14px;
    color: #666;
}

.definition-container {
    display: flex;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.definition-item {
    flex: 1;
    min-width: 300px;
    background: #f8f9ff;
    padding: 20px;
    border-radius: 8px;
    border-top: 3px solid #4a6ee0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.definition-source {
    font-weight: 600;
    color: #4a6ee0;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.definition-source i {
    margin-right: 8px;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin: 25px 0;
}

.step-item {
    background: #f8f9ff;
    padding: 20px 15px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e6e9ff;
}

.step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(74, 110, 224, 0.15);
}

.step-number {
    width: 40px;
    height: 40px;
    background: #4a6ee0;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-weight: bold;
}

.step-title {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.benefits-container {
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%);
    padding: 25px;
    border-radius: 8px;
    margin: 30px 0;
    border: 1px solid #e6e9ff;
}

.benefits-title {
    text-align: center;
    color: #4a6ee0;
    margin-bottom: 20px;
    font-size: 20px;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 15px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.benefit-item i {
    color: #4a6ee0;
    margin-right: 10px;
    margin-top: 3px;
    flex-shrink: 0;
}

.service-details {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.service-card {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    border-top: 3px solid #4a6ee0;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.15);
}

.service-title {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.service-title i {
    margin-right: 8px;
    color: #4a6ee0;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: #4a6ee0;
    margin: 10px 0;
}

.service-period {
    color: #666;
    font-size: 14px;
}

.problem-list {
    margin: 25px 0;
}

.problem-item {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    border-left: 3px solid #ff9800;
}

.problem-title {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.problem-title i {
    margin-right: 8px;
    color: #ff9800;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    overflow: hidden;
}

.pricing-table th {
    background: #4a6ee0;
    color: white;
    padding: 15px;
    text-align: left;
}

.pricing-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #e0e0e0;
}

.pricing-table tr:nth-child(even) {
    background: #f8f9fa;
}

.pricing-table tr:hover {
    background: #e8f5e9;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    margin: 25px 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.feature-item i {
    color: #4a6ee0;
    margin-right: 10px;
    margin-top: 3px;
    flex-shrink: 0;
}

.service-details {
    background: linear-gradient(135deg, #f0f2ff 0%, #e6e9ff 100%);
    border-radius: 8px;
    padding: 25px;
    margin: 30px 0;
    box-shadow: 0 3px 10px rgba(230, 233, 255, 0.5);
}

.service-list {
    list-style-type: none;
}

.service-list li {
    padding: 10px 0;
    border-bottom: 1px dashed #d1d6ff;
    display: flex;
    align-items: center;
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list li i {
    color: #4a5ee0;
    margin-right: 10px;
    font-size: 18px;
}
.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.feature-card {
    background: #f8f9ff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 3px 10px rgba(230, 233, 255, 0.5);
    border-top: 3px solid #4a5ee0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(74, 94, 224, 0.2);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4a5ee0, #6a7afb);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: white;
    font-size: 24px;
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}
.packages-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.package-card {
    background: #f8f9ff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 3px 10px rgba(230, 233, 255, 0.5);
    border-top: 3px solid #4a5ee0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.package-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(230, 233, 255, 0.1) 0%, rgba(230, 233, 255, 0.3) 100%);
    z-index: 1;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(74, 94, 224, 0.2);
}

.package-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
}

.package-title i {
    margin-right: 10px;
    color: #4a5ee0;
}

.package-features {
    list-style-type: none;
    margin: 15px 0;
    position: relative;
    z-index: 2;
}

.package-features li {
    padding: 8px 0;
    border-bottom: 1px dashed #d1d6ff;
    display: flex;
    align-items: center;
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features li i {
    color: #4a5ee0;
    margin-right: 10px;
    font-size: 14px;
}
.seo-levels {
    display: flex;
    justify-content: space-between;
    margin: 30px 0;
    flex-wrap: wrap;
}

.seo-level {
    flex: 1;
    min-width: 300px;
    background: #f8f9ff;
    padding: 20px;
    margin: 10px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(230, 233, 255, 0.5);
    border-top: 3px solid #4a5ee0;
    transition: all 0.3s ease;
}

.seo-level:hover {
    transform: translateY(-5px);
}

.seo-level-title {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.seo-level-title i {
    margin-right: 8px;
    color: #4a5ee0;
}

.cta-section {
    text-align: center;
    margin: 40px 0 20px;
    padding: 25px;
    background: linear-gradient(135deg, #4a6ee0 0%, #6a82fb 100%);
    border-radius: 8px;
    color: white;
}
.intro-section {
    background: linear-gradient(135deg, #f0f2ff 0%, #e6e9ff 100%);
    border-radius: 8px;
    padding: 25px;
    margin: 25px 0;
    box-shadow: 0 3px 10px rgba(230, 233, 255, 0.5);
}
.problems-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.problem-card {
    background: #f8f9ff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 3px 10px rgba(230, 233, 255, 0.5);
    border-top: 3px solid #ff6b6b;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.2);
}

.problem-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: white;
    font-size: 24px;
}

.problem-title {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}
.systems-list li {
    padding: 12px 0;
    border-bottom: 1px dashed #d1d6ff;
    display: flex;
    align-items: center;
    font-size: 16px;
}

.systems-list li:last-child {
    border-bottom: none;
}

.systems-list li i {
    color: #4a5ee0;
    margin-right: 10px;
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.custom-system {
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f2ff 100%);
    border-radius: 8px;
    padding: 25px;
    margin: 30px 0;
    border: 1px solid #e6e9ff;
    text-align: center;
}

.custom-system h3 {
    color: #4a5ee0;
    margin-bottom: 15px;
    font-size: 22px;
}

.custom-system p {
    margin-bottom: 20px;
    color: #555;
}
.image-container {
    margin: 30px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    text-align: center;
}

.image-container img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.pricing-box {
    background: linear-gradient(135deg, #4a5ee0 0%, #6a7afb 100%);
    border-radius: 8px;
    padding: 25px;
    margin: 30px 0;
    color: white;
    text-align: center;
}

.pricing-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

.pricing-amount {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.pricing-desc {
    font-size: 16px;
    opacity: 0.9;
}

.protection-levels {
    display: flex;
    justify-content: space-around;
    margin: 40px 0;
    text-align: center;
    flex-wrap: wrap;
}

.protection-level {
    flex: 1;
    min-width: 200px;
    padding: 20px;
    margin: 10px;
    background: #f8f9ff;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(230, 233, 255, 0.5);
    transition: transform 0.3s ease;
}

.protection-level:hover {
    transform: translateY(-5px);
}

.level-icon {
    font-size: 40px;
    color: #4a5ee0;
    margin-bottom: 10px;
}

.level-title {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
}

.level-desc {
    font-size: 14px;
    color: #666;
}
.cta-section h3 {
    color: white;
    border-bottom: none;
    margin-top: 0;
}

.cta-section h3:after {
    display: none;
}

.cta-section p {
    color: #f0f4ff;
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    background: white;
    color: #4a6ee0;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.clearfix {
    clear: both;
}

@media (max-width: 768px) {
    .page-content {
        padding: 20px;
    }
    
    .page-content h2 {
        font-size: 26px;
    }
    
    .stats-container,
    .definition-container {
        flex-direction: column;
    }
    
    .services-grid,
    .steps-container {
        grid-template-columns: 1fr;
    }

}