body {
    font-family: Arial, sans-serif;
    background-color: #ececec;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.navbar {
    width: 100%;
    background-color: #fce4ec;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
}

.logo {
    font-weight: bold;
    font-size: 1.5em;
    color: #4a4a4a;
}

.nav-links a {
    text-decoration: none;
    color: #4a4a4a;
    margin-left: 25px;
    padding: 5px 0;
    border-bottom: 2px solid transparent;
    transition: border-bottom 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    border-bottom: 2px solid #e91e63;
}

.container {
    max-width: 900px;
    width: 100%;
    padding: 40px 20px 20px 20px;
    box-sizing: border-box;
}

.profile-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-wrap: wrap; 
    align-items: center;
    padding: 30px;
}

.profile-image-container {
    flex: 1;
    min-width: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 30px; 
}

.profile-image {
    width: 200px;
    height: 200px; 
    border-radius: 50%; 
    object-fit: cover;
    border: 5px solid #ffcccc; 
}

.about-content {
    flex: 2;
    min-width: 300px; 
}

.about-content h2 {
    color: #333;
    font-size: 2em;
    margin-bottom: 15px;
}

.about-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}


.skills-section {
    max-width: 900px;
    width: 100%;
    padding: 20px 20px 40px 20px;
    box-sizing: border-box;
}

.skills-grid-container {
    background-color: #fff; 
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    text-align: center; 
}

.skills-grid-container .section-title {
    font-size: 2.2em;
    font-weight: bold;
    color: #333; 
    margin-bottom: 30px; 
    margin-top: 0; 
    display: block;
}

.skills-grid-container .thin-long-underline-pink {
    color: #333;
    border-bottom: 1px solid #333; 
    padding-bottom: 10px; 
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
}

.skill-item {
    background-color: #fce4ec; 
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.skill-item h3 {
    color: #333;
    font-size: 1.1em;
    margin-bottom: 5px;
}

.skill-item p {
    color: #555;
    font-size: 0.9em;
    line-height: 1.4;
    margin: 0;
}


.fan-reason-section {
    max-width: 900px;
    width: 100%;
    padding: 40px 20px;
    box-sizing: border-box;
}

.reason-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    text-align: center; 
    color: #4a4a4a;
}

.reason-content .section-title {
    font-size: 1.8em; 
    font-weight: bold;
    color: #333; 
    margin-top: 0; 
    margin-bottom: 30px; 
    width: 100%;
    text-align: center; 
}

.reason-content .thin-long-underline {
    border-bottom: 1px solid #333; 
    padding-bottom: 10px; 
    display: block;
}

.reason-content .reason-item {
    background-color: #fce4ec; 
    border: none; 
}

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

    .profile-image-container {
        padding-right: 0;
        margin-bottom: 20px;
    }
    
    .navbar {
        padding: 15px 20px;
        flex-direction: column;
    }
    
    .nav-links {
        margin-top: 15px;
        text-align: center;
    }
    
    .nav-links a {
        margin: 0 10px;
        display: inline-block;
    }
}
