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

body {
    font-family: 'DM Sans', sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background-color: #f4f7f4;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.profile-section {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
    width: 100%;
}

.profile-image {
    flex: 0 0 300px;
}

.profile-image img {
    width: 100%;
    height: auto;
}

.profile-content {
    flex: 1;
}

h1 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #2d3748;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.title {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 20px;
    font-weight: 500;
}

.bio {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.8;
    font-weight: 400;
}

.contact-section {
    text-align: center;
    margin-top: 40px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}

.cta-button, .linkedin-button {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s;
    margin: 0;
    border: 2px solid rgba(0, 0, 0, 0.6);
    color: rgba(0, 0, 0, 0.8);
    background-color: transparent;
}

.cta-button, .linkedin-button {
    background-color: transparent;
}

.cta-button:hover, .linkedin-button:hover {
    background-color: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.8);
}

@media (max-width: 768px) {
    .profile-section {
        flex-direction: column;
        text-align: center;
    }

    .profile-image {
        flex: 0 0 auto;
        max-width: 250px;
        margin: 0 auto;
    }

    .contact-section {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .cta-button, .linkedin-button {
        margin: 0;
    }
} 