* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.6;
            color: #37352f;
            background-color: #ffffff;
            padding: 0;
            margin: 0;
        }

        .container {
            max-width: 708px;
            margin: 0 auto;
            padding: 96px 96px 30px 96px;
        }

        /* Header Section */
        .header {
            margin-bottom: 48px;
        }

        .avatar {
            width: 124.32px;
            height: 124.32px;
            margin-bottom: 16px;
        }

        .avatar svg {
            width: 100%;
            height: 100%;
        }

        .title {
            font-size: 40px;
            font-weight: 700;
            line-height: 1.2;
            color: #37352f;
            margin-bottom: 8px;
        }

        .description {
            font-size: 16px;
            line-height: 1.5;
            color: #37352f;
            margin-bottom: 16px;
        }

        .buttons {
            display: flex;
            gap: 8px;
            margin-top: 16px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            padding: 6px 8px;
            font-size: 14px;
            line-height: 1.2;
            color: #37352f;
            text-decoration: none;
            border-radius: 3px;
            transition: background-color 0.2s ease;
            gap: 6px;
        }

        .btn:hover {
            background-color: rgba(55, 53, 47, 0.08);
        }

        .btn-icon {
            width: 14px;
            height: 14px;
        }

        /* Portfolio Section */
        .section {
            margin-bottom: 48px;
        }

        .section-title {
            font-size: 24px;
            font-weight: 600;
            line-height: 1.3;
            color: #37352f;
            margin-bottom: 16px;
        }

        .portfolio-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-bottom: 16px;
        }

        .portfolio-item {
            margin-bottom: 8px;
        }

        .case-name {
            font-size: 14px;
            color: #37352f;
            margin-bottom: 4px;
        }

        .case-preview {
            width: 100%;
            height: 200px;
            background: #4F46E5;
            border-radius: 3px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: opacity 0.2s ease;
        }

        .case-preview:hover {
            opacity: 0.9;
        }

        .case-preview-text {
            font-size: 16px;
            font-weight: 500;
            margin-bottom: 4px;
        }

        .case-preview-size {
            font-size: 12px;
            opacity: 0.8;
        }

        .case-category {
            font-size: 12px;
            color: #787774;
            margin-top: 4px;
        }

        /* Previously at Section */
        .companies {
            display: flex;
            align-items: center;
            gap: 32px;
            margin-top: 16px;
        }

        .company-logo {
            height: 32px;
            opacity: 0.6;
            transition: opacity 0.2s ease;
        }

        .company-logo:hover {
            opacity: 1;
        }

        /* Testimonials Section */
        .testimonial {
            border-left: 3px solid #e9e9e7;
            padding-left: 16px;
            margin-bottom: 16px;
            font-size: 14px;
            line-height: 1.5;
            color: #37352f;
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 8px;
        }

        .testimonial-author {
            font-weight: 500;
            color: #37352f;
        }

        /* Contact Section */
        .contact {
            margin-top: 48px;
            padding-top: 24px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 8px;
            font-size: 14px;
            color: #37352f;
            text-decoration: none;
        }

        .contact-item:hover {
            background-color: rgba(55, 53, 47, 0.08);
            border-radius: 3px;
            padding: 4px;
            margin: 4px -4px;
        }

        .contact-icon {
            width: 14px;
            height: 14px;
        }

        /* Footer */
        .footer {
            margin-top: 48px;
            padding-top: 24px;
            font-size: 12px;
            color: #787774;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .container {
                padding: 48px 24px 30px 24px;
            }
            
            .portfolio-grid {
                grid-template-columns: 1fr;
            }
            
            .companies {
                flex-wrap: wrap;
                gap: 16px;
            }
            
            .title {
                font-size: 32px;
            }
        }

.profile-picture {
    width: 100%;
    height: 100%;
    border-radius: 4px;
    object-fit: cover;
    display: block;
}

.companies img {
            max-width: 100px; /* Set a maximum width for the logos */
            height: auto; /* Maintain aspect ratio */
            opacity: 0.6;
            transition: opacity 0.2s ease;
        }

        .companies img:hover {
            opacity: 1;
        }

        .companies {
            display: flex;
            align-items: center;
            flex-wrap: wrap; /* Allow logos to wrap to the next line */
            gap: 20px; /* Adjust gap between logos */
            margin-top: 16px;
            justify-content: center; /* Center the logos */
        }