body {
    margin: 0;
    padding: 0;
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    background-color: #01051D !important;
    color: white !important;
}

.container {
    width: 100%;
    height: 100%;
}

img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    display: block;
}

.seo-container {
    max-width: 900px;
    margin: 400px auto;
    background-color: #1a1d2e;
    padding: 40px;
    box-shadow: 0 10px 20px rgba(3, 3, 3, 0.808);
    border-radius: 15px;
    font-family: 'Roboto', Arial, sans-serif;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.seo-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.seo-title-main {
    font-size: 28px;
    padding: 15px 0;
    color: #fff;
    font-weight: bold;
    margin-top: 30px;
    border-bottom: 3px solid #E2E8F0;
    letter-spacing: 0.5px;
}

.seo-title-section {
    font-size: 24px;
    padding: 10px 0;
    color: #fff;
    margin-top: 20px;
    font-weight: 600;
    border-left: 4px solid #0173E5;
    padding-left: 10px;
}

.seo-text {
    font-size: 16px;
    padding: 10px 0;
    line-height: 1.8;
    color: #fff;
    margin-top: 15px;
    text-align: justify;
    letter-spacing: 0.3px;
}

.seo-list {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.seo-list-item {
    padding: 10px 0;
    font-size: 16px;
    color: #fff;
    display: flex;
    align-items: center;
}

.seo-list-item::before {
    content: '•';
    color: #0173E5;
    font-size: 18px;
    margin-right: 10px;
}

.seo-list-link {
    text-decoration: none;
    color: #fff !important;
    font-weight: bold;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.seo-list-link:hover {
    color: #fff;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    text-decoration: underline;
}

.seo-list-link:active {
    color: #fff;
    text-shadow: none;
}

.seo-list-link:focus {
    outline: none;
    color: #fff;
    text-decoration: underline wavy;
}

.seo-image {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.seo-comments-section {
    margin-top: 30px;
    border-top: 2px solid #E2E8F0;
    padding-top: 20px;
}

.seo-comment {
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 10px;
    background-color: #01051D;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.seo-comment-author {
    font-weight: bold;
    color: #fff;
    margin-bottom: 5px;
}

.seo-comment-text {
    font-size: 16px;
    line-height: 1.6;
    color: #fff;
}

@media (max-width: 768px) {
    .seo-container {
        padding: 20px;
    }

    .seo-title-main {
        font-size: 22px;
    }

    .seo-title-section {
        font-size: 18px;
    }

    .seo-text {
        font-size: 14px;
    }

    .seo-list-item {
        font-size: 14px;
    }
}




footer {
    text-align: center; /* متن را در مرکز افقی قرار می‌دهد */
    padding: 20px 0; /* فضای داخلی بالا و پایین فوتر */
    background-color: #01051D; /* رنگ پس‌زمینه (اختیاری) */
    border-top: 1px solid #01051D; /* خط جداکننده بالای فوتر (اختیاری) */
    font-size: 14px; /* اندازه متن */
    color: #fff; /* رنگ متن */
}