/* Base styles for the section */
.seo-section {
    background: linear-gradient(145deg, #f7f7f7, #e1e1e1);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: auto;
    font-family: 'Arial', sans-serif;
    transition: all 0.3s ease-in-out;
}

/* Adding subtle depth on hover */
.seo-section:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transform: scale(1.02);
}

/* Heading styles */
.seo-section h2,
.seo-section h3 {
    color: #333;
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.seo-section h2::after,
.seo-section h3::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 2px;
    background-color: #00ffcc;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* Paragraph and list styling */
.seo-section p,
.seo-section ul {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
}

.seo-section ul {
    list-style-type: none;
    padding: 0;
}

.seo-section ul li {
    background: #fff;
    margin-bottom: 10px;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.seo-section ul li:hover {
    background: #00ffcc;
    color: black;
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Strong tag emphasis */
.seo-section strong {
    font-weight: bold;
    color: #000;
    position: relative;
}


.seo-section strong::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: #2575fc;
    bottom: -5px;
    left: 0;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease-in-out;
}

.seo-section strong:hover::before {
    transform: scaleX(1);
    color: #00ffcc;
    transform-origin: bottom left;
}

/* Interactive hover effect for the section */
.seo-section:hover {
    background: linear-gradient(145deg, #f7f7f7, #ffffff);
}

