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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #e8e8f5 0%, #d4d4e8 50%, #c8c8dc 100%);
    min-height: 100vh;
    padding: 0;
}

header {
    padding: 60px 40px 40px;
    text-align: left;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.subtitle {
    font-size: 1.1rem;
    color: #5a6c7d;
    font-weight: 400;
    margin: 0;
}

main {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
}

.profile-image {
    text-align: center;
    margin-bottom: 50px;
}

.profile-image img {
    width: 200px;
    height: 250px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.content {
    margin-bottom: 60px;
}

.content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #2c3e50;
    margin-bottom: 30px;
    text-align: justify;
}

.link {
    color: #3498db;
    text-decoration: underline;
    text-decoration-color: #3498db;
    text-underline-offset: 2px;
}

.link:hover {
    color: #2980b9;
    text-decoration-color: #2980b9;
}

.contact {
    margin-top: 60px;
}

.contact h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
}

.contact p {
    font-size: 1.05rem;
    margin-bottom: 12px;
    color: #2c3e50;
}

.email {
    color: #3498db;
    text-decoration: none;
}

.email:hover {
    text-decoration: underline;
    color: #2980b9;
}

@media (max-width: 768px) {
    header {
        padding: 40px 20px 30px;
    }

    header h1 {
        font-size: 2rem;
    }

    main {
        padding: 20px;
    }

    .profile-image img {
        width: 160px;
        height: 200px;
    }

    .content p {
        font-size: 1rem;
        text-align: left;
    }
}