:root {
    --accent-color: #B7C9B5;
    --font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    margin: 0;
    font-family: var(--font-family);
    line-height: 1.6;
    background-color: #fdfdfd;
    color: #333;
}

/* Navigation */
nav {
    background-color: var(--accent-color);
    padding: 1rem;
    text-align: center;
}

    nav a {
        color: #fff;
        text-decoration: none;
        margin: 0 1rem;
        font-weight: 500;
        transition: color 0.3s ease;
        display: inline-block;
    }

        nav a:hover {
            color: #eee;
        }

/* Main Content Layout */
.content-wrapper {
    max-width: 1000px;
    margin: 2rem auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

/* Left Column (Image + Title) */
.profile-column {
    flex: 1 1 300px;
    text-align: center;
}

    .profile-column img {
        width: 350px;
        height: 350px;
        object-fit: cover;
        border-radius: 50%;
    }

    .profile-column h1 {
        font-size: 1.5rem;
        margin: 0.5rem 0;
        color: var(--accent-color);
        font-weight: 600;
    }

    .profile-column .subtitle {
        color: #6A8061;
        font-size: 1rem;
        font-weight: 400;
        display: block;
        margin-top: 0.2rem;
    }

/* Right Column (About Text) */
.about-column {
    flex: 1 1 500px;
    padding-top: 1rem;
}

.about-text {
    font-size: 1.05rem;
    line-height: 1.75;
}

    /* Link styling for body text */
    .about-text a {
        color: #6A8061;
        text-decoration: underline;
        transition: color 0.3s ease;
    }

        .about-text a:hover {
            color: #556650;
        }

/* Footer */
footer {
    background-color: #f5f5f5;
    text-align: center;
    padding: 1.5rem;
    margin-top: 3rem;
    font-size: 0.9rem;
    color: #666;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .profile-column {
        margin-bottom: 2rem;
    }

        .profile-column img {
            width: 100%;
            max-width: 300px;
        }
}
