/* --- General Styles --- */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    line-height: 1.7;
    margin: 0;
    color: #555;
    background-color: #fefefe;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 25px;
}

h2 {
    font-size: 2.2em;
    font-weight: 300;
    color: #333;
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: 1px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

h3 {
    font-size: 1.6em;
    font-weight: 400;
    color: #e895a2;
    margin-bottom: 15px;
}

h4 {
    font-size: 1.2em;
    font-weight: 600;
    color: #666;
    margin-top: 20px;
}

a {
    color: #d6808e;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #e895a2;
}

ul {
    list-style: none;
    padding-left: 0;
}

li {
    margin-bottom: 8px;
}

/* --- Header & Navigation --- */
header {
    background: #fff;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    margin: 0;
    font-size: 1.8em;
    font-weight: 500;
    color: #333;
}

header nav ul {
    margin: 0;
    padding: 0;
}

header nav ul li {
    display: inline-block;
    margin: 0 15px;
}

header nav ul li a {
    color: #555;
    font-weight: 500;
    font-size: 1em;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
    transition: border-bottom-color 0.3s ease;
}

header nav ul li a:hover {
    color: #000;
    border-bottom-color: #e895a2;
}

.language-switcher a {
    color: #888;
    font-weight: 500;
}

/* --- Main Content --- */
main {
    padding: 50px 0;
}

section {
    margin-bottom: 60px;
    padding-top: 20px; /* Offset for sticky nav */
}

/* --- Profile Section --- */
.profile-flex {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.profile-pic {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid #fdeef1;
    flex-shrink: 0;
}

.profile-details ul {
    padding-left: 20px;
    list-style: disc;
}

/* --- Links Section --- */
.link-groups {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.link-group h4 {
    border-bottom: 2px solid #e895a2;
    padding-bottom: 10px;
    margin-top: 0;
}

.link-group ul li a {
    display: block;
    padding: 8px 12px;
    background-color: #f9f9f9;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.link-group ul li a:hover {
    background-color: #fdeef1;
    transform: translateX(5px);
}

/* --- Access Section --- */
#access img {
    vertical-align: middle;
}

/* --- Footer --- */
footer {
    background: #f8f8f8;
    color: #777;
    text-align: center;
    padding: 25px 0;
    margin-top: 40px;
    border-top: 1px solid #eee;
}

/* --- Google Translate --- */
/* The widget is hidden, functionality is through custom links */
.goog-te-banner-frame.skiptranslate {
    display: none !important;
}
body {
    top: 0px !important;
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
    .profile-flex {
        flex-direction: column;
        align-items: center;
    }

    header h1 {
        font-size: 1.5em;
    }

    header nav ul li {
        margin: 0 8px;
    }

    header nav ul li a {
        font-size: 0.9em;
    }
}