
        :root {
            --primary-color: #e9cace;
            --secondary-color: #3D3030;
            --background-color: #F5F5F5;
            --text-color: #6E6662;
            --accent-color: #9C9B7C;
            --light-bg: #FFFFFF;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }

        body {
            background-color: var(--background-color);
            color: var(--text-color);
            line-height: 1.6;
        }

        h1 span {
            font-style: italic;
        }

        h2 {
            letter-spacing: 15px;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .container p {
            text-align: center;
        }

        header {
            background: var(--primary-color);
            color: var(--secondary-color);
            padding: 2rem 0;
            text-align: center;
        }

        .hero {
            padding: 4rem 0;
            text-align: center;
            background-color: var(--light-bg);
        }

        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: var(--secondary-color);
        }

        .hero p {
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto;
            color: var(--text-color);
        }

        .portfolio-grid {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            padding: 1rem 3rem;
            justify-content: center;
            max-width: 1000px;
            margin: 0 auto;
        }

        .portfolio-item {
            flex: 1 1 300px;
            background: var(--light-bg);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            aspect-ratio: 4/3;
            cursor: pointer;
        }

        .portfolio-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
        }

        .portfolio-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .portfolio-item:hover img {
            transform: scale(1.05);
        }

        .portfolio-item-content {
            display: none;
        }

        .video-section {
            padding: 4rem 0;
        }

        .video-section .container {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .video-section h3 {
            color: var(--secondary-color);
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }

        .video-section p {
            color: var(--text-color);
            margin-bottom: 2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .video-container {
            max-width: 300px;
            margin: 1rem auto 0;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        .video-container video {
            width: 100%;
            display: block;
        }

        .video-grid {
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 3rem;
            margin: 0 auto;
            max-width: 500px;
            padding: 0 2rem;
        }

        .video-item {
            position: relative;
            background: white;
            border-radius: 8px;
            padding: 1rem 2rem;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .video-item:before,
        .video-item:after {
            content: "";
            position: absolute;
            left: 50%;
            border-radius: 50%;
            height: 0.5rem;
            width: 0.5rem;
            color: black;
            background-color: rgba(187, 103, 103, 0.658);
        }

        .video-item:before {
            bottom: -20px;
        }

        .video-item:after {
            bottom: -40px;
        }

        .video-item h3 {
            color: var(--secondary-color);
            margin-bottom: 0.5rem;
            font-size: 1.5rem;
        }

        .video-item p {
            color: #3d3030;
            margin-bottom: .5rem;
        }

        .video-item a {
            color: var(--text-color);
            font-weight: bold;
            display: inline-block;
            margin-top: 1rem;
            transition: color 0.3s ease;
        }

        .video-item a:hover {
            color: var(--secondary-color);
        }

        .video-meta {
            color: var(--text-color);
            font-size: 0.9rem;
            opacity: 0.8;
        }

        .video-preview {
            width: 100%;
            max-width: 400px;
            margin: 1rem auto;
            border-radius: 8px;
            overflow: hidden;
        }

        .video-preview img {
            width: 100%;
            height: auto;
            display: block;
        }

        .articles-section {
            padding: 4rem 0;
            background: var(--light-bg);
        }

        .articles-grid {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            max-width: 800px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .article-item {
            background: white;
            border-radius: 8px;
            padding: 2rem;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .article-item:hover {
            transform: translateY(-5px);
        }

        .article-item h3 {
            color: var(--secondary-color);
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }

        .article-item p {
            color: var(--text-color);
            margin-bottom: 1rem;
        }

        .article-item a {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: bold;
            display: inline-block;
            margin-top: 1rem;
            transition: color 0.3s ease;
        }

        .article-item a:hover {
            color: var(--secondary-color);
        }

        .article-meta {
            color: var(--text-color);
            font-size: 0.9rem;
            opacity: 0.8;
        }

        footer {
            background:  var(--primary-color);
            color: var(--secondary-color);
            text-align: center;
            padding: 2rem 0;
            margin-top: 4rem;
        }

        h2 {
            font-size: 3rem;
            color: var(--secondary-color);
            text-align: center;
            margin: 2rem 0 1rem;
            position: relative;
            padding-bottom: 1rem;
        }

        h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background-color: var(--primary-color);
        }

        header h2 {
            color: var(--secondary-color);
            font-size: 1.8rem;
            margin: 1rem 0 0;
            padding-bottom: 0;
        }

        header h2::after {
            display: none;
        }

        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            z-index: 1000;
            justify-content: center;
            align-items: center;
        }

        .modal.active {
            display: flex;
        }

        .modal-content {
            position: relative;
            max-width: 90%;
            max-height: 90vh;
            margin: auto;
        }

        .modal-content img {
            max-width: 100%;
            max-height: 90vh;
            object-fit: contain;
            border-radius: 8px;
        }

        .close-modal {
            position: absolute;
            top: -40px;
            right: -40px;
            color: white;
            font-size: 2rem;
            cursor: pointer;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--primary-color);
            border-radius: 50%;
            transition: transform 0.3s ease;
        }

        .close-modal:hover {
            transform: rotate(90deg);
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2rem;
            }

            h1 span {
                font-size: 1.5rem;
            }


            .portfolio-grid,
            .video-grid {
                padding-left: 0;
                padding-right: 0;
            }
            .video-item {
                max-width: 100%;
            }


            .portfolio-item {
                max-width: 100%;
            }

            .close-modal {
                top: 10px;
                right: 10px;
            }

            h2 {
                letter-spacing: unset;
            }
        }
