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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #ffffff;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    display: flex;
    min-height: 100vh;
    width: 100%;
}

/* Image Section - Left Side */
.image-section {
    flex: 0 0 50%;
    max-width: 50%;
    position: relative;
    overflow: hidden;
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Content Section - Right Side */
.content-section {
    flex: 0 0 50%;
    max-width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    background-color: #ffffff;
}

.text-content {
    max-width: 600px;
    width: 100%;
}

h1 {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.subtitle {
    font-size: 16px;
    font-weight: 400;
    color: #666;
    margin-bottom: 40px;
}

.bio {
    margin-bottom: 40px;
}

.bio p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 0;
}

.bio strong {
    font-weight: 600;
    color: #1a1a1a;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 16px;
    align-items: center;
}

.social-icon {
    width: 44px;
    height: 44px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    cursor: pointer;
    display: block;
}

/* Add gray background to LinkedIn icon to match others */
.social-links a[aria-label="LinkedIn"] .social-icon {
    background-color: #6B7280;
    border-radius: 50%;
    padding: 0;
}

.social-links a {
    display: inline-block;
    text-decoration: none;
}

.social-links a:hover .social-icon {
    transform: translateY(-3px);
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .content-section {
        padding: 40px;
    }

    .text-content {
        max-width: 500px;
    }

    h1 {
        font-size: 24px;
    }

    .bio p {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .image-section,
    .content-section {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .image-section {
        min-height: 50vh;
        max-height: 60vh;
    }

    .content-section {
        padding: 40px 30px;
    }

    h1 {
        font-size: 26px;
    }

    .subtitle {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .bio {
        margin-bottom: 30px;
    }

    .bio p {
        font-size: 15px;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .content-section {
        padding: 30px 20px;
    }

    h1 {
        font-size: 22px;
    }

    .subtitle {
        font-size: 14px;
    }

    .bio p {
        font-size: 14px;
    }

    .social-icon {
        width: 40px;
        height: 40px;
    }

    .social-links {
        gap: 12px;
    }
}

/* High-resolution displays */
@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
    .profile-image {
        image-rendering: -webkit-optimize-contrast;
    }
}