/* General Reset */
body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: white;
    color: #333;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
}

/* Header Section */
.header-container {
    text-align: center;
    padding: 2rem;
    border-bottom: 1px solid #ddd;
}

/* Profile Section */
.profile-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    animation: fadeIn 1s ease-in;
    max-width: 800px;
    margin: 0 auto;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.profile-picture {
    width: 180px;
    height: 180px;
    object-fit: cover;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cpath fill='%23000' d='M0,90 C0,0 0,0 90,0 S180,0 180,90 180,180 90,180 0,180 0,90'%3E%3C/path%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cpath fill='%23000' d='M0,90 C0,0 0,0 90,0 S180,0 180,90 180,180 90,180 0,180 0,90'%3E%3C/path%3E%3C/svg%3E");
    -webkit-mask-size: contain;
    mask-size: contain;
}

/* Profile Text */
.profile-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.profile-text h1 {
    font-size: 2.5rem;
    letter-spacing: -0.02em;
    font-weight: 700;
    margin: 0;
    color: #333;
}

.profile-text p {
    font-size: 1rem;
    color: #666;
    margin: 0.5rem 0;
}

.profile-text a {
    color: #0073e6;
    text-decoration: none;
    font-weight: 500;
}

.profile-text a:hover {
    text-decoration: underline;
}

/* Clients Section */
.clients-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
}

.clients-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.clients-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.clients-logos img {
    max-width: 150px;
    max-height: 50px;
    filter: grayscale(100%);
    transition: all 0.3s ease;
    opacity: 0.7;
}

.clients-logos img:hover {
    filter: grayscale(0%);
    transform: translateY(-2px);
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .profile-text h1 {
        font-size: 2rem;
    }

    .clients-logos {
        gap: 1.5rem;
    }

    .clients-logos img {
        max-width: 120px;
    }
}