/* Portfolio Page Styles */

/* Portfolio Section */
.portfolio-section {
    padding-top: 150px!important;
    padding-bottom: 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
}

/* Заголовки */
.portfolio-title {
    font-size: 3rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 1rem;
}

.portfolio-subtitle {
    font-size: 1.25rem;
    color: #6c757d;
    margin-bottom: 0;
}

/* SEO Content */
.seo-content {
    background: #fff;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.seo-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #000;
}

.seo-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #000;
}

.seo-content .lead {
    font-size: 1.2rem;
    color: #495057;
    line-height: 1.8;
}

.seo-content p {
    font-size: 1.1rem;
    color: #495057;
    line-height: 1.8;
}

.seo-list {
    list-style: none;
    padding-left: 0;
}

.seo-list li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    color: #495057;
}

.seo-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #000;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Адаптивність */
@media (max-width: 991px) {
    .portfolio-section {
        padding-top: 120px;
        padding-bottom: 60px;
    }
    
    .portfolio-title {
        font-size: 2.5rem;
    }
    
    .portfolio-subtitle {
        font-size: 1.1rem;
    }
    
    .seo-content {
        padding: 2rem;
    }
    
    .seo-content h2 {
        font-size: 1.75rem;
    }
    
    .seo-content h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .portfolio-section {
        padding-top: 100px;
        padding-bottom: 50px;
    }
    
    .portfolio-title {
        font-size: 2rem;
    }
    
    .portfolio-subtitle {
        font-size: 1rem;
    }
    
    .seo-content {
        padding: 1.5rem;
    }
    
    .seo-content h2 {
        font-size: 1.5rem;
    }
    
    .seo-content h3 {
        font-size: 1.2rem;
    }
    
    .seo-content .lead {
        font-size: 1rem;
    }
    
    .seo-content p {
        font-size: 1rem;
    }
    
    .seo-list li {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .portfolio-title {
        font-size: 1.75rem;
    }
    
    .seo-content {
        padding: 1rem;
    }
}