/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Arial, sans-serif;
}

body {
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    display: flex;
    max-width: 1000px;
    width: 100%;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-radius: 2px;
    overflow: hidden;
}

/* Left profile box */
.profile-box {
    width: 320px;
    background: white;
    padding: 30px;
    border-right: 1px solid #eaeaea;
    display: flex;
    flex-direction: column;
}

.profile-header {
    text-align: center;
    margin-bottom: 25px;
}

.profile-pic {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #e0e0e0;
    margin: 0 auto 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    color: #777;
    border: 1px solid #ddd;
}

.profile-name {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #222;
}

.profile-title {
    font-size: 14px;
    color: #777;
    margin-bottom: 15px;
}

.tagline {
    font-size: 15px;
    color: #444;
    padding: 10px 0;
    border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
    margin-bottom: 20px;
    text-align: center;
    font-style: italic;
}

.profile-desc {
    font-size: 14px;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.5;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: auto;
}

.social-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #444;
    padding: 10px 15px;
    border: 1px solid #eaeaea;
    border-radius: 3px;
    transition: all 0.2s;
    font-size: 14px;
}

.social-link i {
    margin-right: 10px;
    color: #666;
    width: 20px;
    text-align: center;
}

.social-link:hover {
    background: #f8f9fa;
    border-color: #ddd;
}

/* Right content area */
.content-area {
    flex: 1;
    padding: 30px;
    background: #fcfcfc;
}

.section-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #222;
    padding-bottom: 10px;
    border-bottom: 1px solid #eaeaea;
}

.interest-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.interest-category {
    margin-bottom: 15px;
}

.interest-category h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #333;
    display: flex;
    align-items: center;
}

.interest-category h3 i {
    margin-right: 8px;
    color: #666;
}

.interest-list {
    list-style: none;
}

.interest-list li {
    font-size: 14px;
    padding: 6px 0;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
}

.interest-list li:last-child {
    border-bottom: none;
}

.interest-list li:before {
    content: "•";
    margin-right: 8px;
    color: #999;
    font-size: 18px;
}

.footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eaeaea;
    color: #777;
    font-size: 13px;
    text-align: center;
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }
    
    .profile-box {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #eaeaea;
    }
    
    .interest-grid {
        grid-template-columns: 1fr;
    }
}