 /* Single Project Page Styles */
.article-section {
    padding: 130px 0 !important;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.article-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    pointer-events: none;
}

.single-article-content {
    line-height: 1.8;
    color: #333;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
}

.single-article-content h1,
.single-article-content h2,
.single-article-content h3,
.single-article-content h4,
.single-article-content h5,
.single-article-content h6 {
    color: #2c3e50;
    margin-top: 30px;
    margin-bottom: 18px;
    font-weight: 700;
    line-height: 1.3;
}

.single-article-content h1 { font-size: 34px; }
.single-article-content h2 { font-size: 28px; }
.single-article-content h3 { font-size: 24px; }
.single-article-content h4 { font-size: 20px; }
.single-article-content h5 { font-size: 18px; }
.single-article-content h6 { font-size: 16px; }

.single-article-content p {
    margin-bottom: 18px;
}

.single-article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
    transition: all 0.3s ease;
}

.single-article-content img:hover {
    transform: scale(1.01);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Feature List Styles */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.feature-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 16px;
    color: #555;
}

.feature-list li::before {
    content: '\f00c';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary-color);
    font-size: 16px;
}

/* Specifications Table Styles */
.specs-table {
    margin: 25px 0;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.specs-table table {
    margin: 0;
    width: 100%;
}

.specs-table td {
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    font-size: 15px;
}

.specs-table td:first-child {
    font-weight: 600;
    color: #2c3e50;
    width: 40%;
}

.specs-table tr:last-child td {
    border-bottom: none;
}

/* Results Grid Styles */
.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.result-item {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.result-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.result-item .number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.result-item .label {
    font-size: 16px;
    color: #666;
}

/* Related Projects Styles */
.related-projects {
    margin-top: 50px;
}

.related-projects h3 {
    margin-bottom: 30px;
}

.article-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.article-img {
    position: relative;
    overflow: hidden;
}

.article-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.article-card:hover .article-img img {
    transform: scale(1.1);
}

.article-overlay {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
}

.article-content {
    padding: 20px;
}

.article-title {
    font-size: 18px;
    margin-bottom: 15px;
    line-height: 1.4;
}

.article-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #666;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.article-meta i {
    color: var(--primary-color);
}

.article-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.article-link:hover {
    gap: 10px;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .article-section {
        padding: 80px 0;
    }
    .single-article-content h1 { font-size: 28px; }
    .single-article-content h2 { font-size: 24px; }
    .single-article-content h3 { font-size: 22px; }
    .single-article-content h4 { font-size: 18px; }
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .article-section {
        padding: 60px 0;
    }
    .single-article-content {
        font-size: 15px;
    }
    .single-article-content h1 { font-size: 24px; }
    .single-article-content h2 { font-size: 20px; }
    .single-article-content h3 { font-size: 18px; }
    .single-article-content h4 { font-size: 16px; }
    .results-grid {
        grid-template-columns: 1fr;
    }
    .specs-table td {
        padding: 12px 15px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .article-section {
        padding: 40px 0;
    }
    .single-article-content h1 { font-size: 20px; }
    .single-article-content h2 { font-size: 18px; }
    .single-article-content h3 { font-size: 16px; }
    .single-article-content h4 { font-size: 14px; }
    .result-item .number {
        font-size: 28px;
    }
    .result-item .label {
        font-size: 14px;
    }
}