/* Our Work Page Specific Styles */

/* Page Banner Styles */
.page-banner {
    background: linear-gradient(135deg, rgba(18, 61, 0, 0.8) 0%, #000 100%);
    padding: 160px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(46, 204, 113, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 0;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.page-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Portfolio Section Adjustments for dedicated page */
.portfolio {
    padding-top: 80px;
    padding-bottom: 100px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    
    .page-banner {
        padding: 120px 0 60px;
    }
    
    .page-title {
        font-size: 2.8rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .page-banner {
        padding: 100px 0 50px;
    }
    
    .page-title {
        font-size: 2.2rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .portfolio {
        padding-top: 50px;
        padding-bottom: 70px;
    }
}