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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #fff;
    color: #000;
    overflow: hidden;
    height: 100vh;
}

/* Header */
header {
    position: absolute;
    top: 20px;
    right: 30px;
    z-index: 10;
}

.logo {
    height: 50px;
    width: auto;
}

/* Main Container */
.container {
    display: flex;
    height: 100vh;
    align-items: center;
}

/* Left Section - Image */
.left-section {
    flex: 0 0 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.profile-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: cover;
}

/* Right Section - Text */
.right-section {
    flex: 0 0 50%;
    display: flex;
    align-items: center;
    padding: 40px 60px 40px 20px;
}

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

.text-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #000;
    margin-bottom: 0;
}

.intro-line {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
}

.highlight {
    color: #e86851;
    font-weight: 600;
}

.link {
    color: #e86851;
    text-decoration: none;
    font-weight: 500;
}

.link:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 968px) {
    .container {
        flex-direction: column;
        overflow-y: auto;
        height: auto;
    }
    
    body {
        overflow: auto;
    }
    
    header {
        position: relative;
        top: 0;
        right: 0;
        text-align: right;
        padding: 20px 30px;
    }
    
    .left-section, .right-section {
        flex: 1;
        padding: 30px;
    }
    
    .profile-image {
        max-width: 400px;
    }
}