body{
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #7fa583 0%, #4a7c6f 100%);
    min-height: 100vh;
}

.main-title{
    text-align: center;
    color: #3d2519;
    font-size: 48px;
    margin-top: 40px;
    font-family: Georgia, serif;
    font-style: italic;
}

.main-container {
    background-color: #d4a89a;
    max-width: 750px;
    height: 250px;
    margin: 40px auto;
    padding: 40px;
    border-radius: 30px;
    display: flex;
    gap: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.profile-section{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-shrink: 0;
    position: relative;
}

.profile-image {
    width: 230px;
    height: 230px;
    background-color: #ffdada;
    border-radius: 30px;
    border-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: relative;
}

.profile-pic {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    padding: 10px;
    box-sizing: border-box;
}

.profile-caption {
    color: #ffffff;
    font-size: 18px;
    font-family: 'Lucida Console', monospace;
    margin: 0;
    text-align: left;
    position: absolute;
    bottom: -25px;
    right: 15px;
}

.arrow-image {
    position: absolute;
    width: 100px;
    height: 130px;
    bottom: -70px;
    left: -10px;
    z-index: 10;
}

.text-section {
    flex: 1;
    font-family: Georgia, serif;
    display: flex;
    flex-direction: column;
}

.intro-text {
    font-size: 16px;
    font-family: Georgia, serif;
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 5px;
}

.welcome-text{
    font-size: 16px;
    font-family: Georgia, serif;
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 5px;
}

.nav-buttons {
    display: flex;
    gap: 15px;
    margin-top: auto;
}

.nav-btn {
    background-color: #379683;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.nav-btn:hover {
    background-color: #06e4b7
}

.welcome-popup {
    position: fixed;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(19, 89, 92, 0.884);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(2px);
    transition: opacity 0.5s ease;
}

.welcome-subtitle{
    color: white;
    font-size: 48px;
    font-family: 'Beth Ellen', cursive;
    text-align: center;
    margin: 0;
    font-weight: normal;
    font-style: normal;
}