.sec-seo-points {
    padding: 100px 20px;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.seo-points-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.seo-point-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.seo-point-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.point-icon {
    font-family: 'Inter', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(0, 122, 255, 0.1);
    line-height: 1;
    margin-bottom: 20px;
}

.seo-point-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1d1d1f;
    line-height: 1.4;
}

.seo-point-card p {
    font-size: 0.95rem;
    color: #424245;
    line-height: 1.8;
    text-align: justify;
}

@media (max-width: 768px) {
    .sec-seo-points {
        padding: 60px 20px;
    }
    .seo-point-card {
        padding: 30px;
    }
}
