/* Content Area */
        .content-area {
            flex: 1;
            padding: 3rem 2rem;
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
        }

        .page-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .page-title {
            font-size: 3rem;
            font-weight: 300;
            color: #3E3D3A;
            margin-bottom: 1rem;
            letter-spacing: 0.02em;
        }

        .page-subtitle {
            font-size: 1.25rem;
            color: #5A5A57;
            font-weight: 300;
            line-height: 1.6;
            max-width: 700px;
            margin: 0 auto;
        }
        /* Portfolio Grid */
        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-bottom: 4rem;
        }

        .portfolio-card {
            background: rgba(232, 227, 219, 0.85);
            border-radius: 4px;
            overflow: hidden;
            box-shadow: 0 4px 16px rgba(0,0,0,0.1);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            border: 1px solid rgba(0,0,0,0.06);
        }

        .portfolio-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 8px 32px rgba(0,0,0,0.15);
        }
        .portfolio-card a {
            color: black;
            text-decoration: none ;

        }
        .portfolio-image {
            width: 100%;
            height: 300px;
            background-size: cover;
            background-position: center;
            position: relative;
            overflow: hidden;
        }

        .portfolio-image::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 50%;
            background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.3));
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .portfolio-card:hover .portfolio-image::after {
            opacity: 1;
        }

        .portfolio-content {
            padding: 1.75rem;
        }

        .portfolio-category {
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: #C0735C;
            margin-bottom: 0.75rem;
            font-weight: 600;
        }

        .portfolio-title {
            font-size: 1.75rem;
            font-weight: 400;
            color: #3E3D3A;
            margin-bottom: 1rem;
            letter-spacing: 0.01em;
        }

        .portfolio-description {
            font-size: 1rem;
            color: #5A5A57;
            line-height: 1.6;
            margin-bottom: 1.25rem;
        }

        .portfolio-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }

        .portfolio-tag {
            padding: 0.4rem 0.9rem;
            background: rgba(192, 115, 92, 0.1);
            border: 1px solid rgba(192, 115, 92, 0.2);
            border-radius: 2px;
            font-size: 0.85rem;
            color: #3E3D3A;
        }

        /* Mobile Styles */
        @media (max-width: 768px) {
        .portfolio-grid {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        .portfolio-image {
            height: 250px;
        }

        .portfolio-content {
            padding: 1.5rem;
        }

        .portfolio-title {
            font-size: 1.5rem;
        }
        }