body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(to top, #8ecae6, #ffffff);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    background: #004d40;
    color: white;
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
}

.contact-info p {
    margin: 0;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

nav ul li {
    margin: 0 10px;
}

nav ul li a {
    color: white;
    text-decoration: none;
}

main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.home-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    width: 100%;
    text-align: left;
}

.text-content {
    flex: 1;
    padding: 20px;
}

.text-content h1 {
    text-align: left;
    margin-bottom: 0;
}

.text-content p {
    margin-top: 10px;
}

.profile-photo {
    flex: 1;
    width: 400px;
    height: auto;
    border-radius: 10px;
    margin-left: 20px;
}

.social-media {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.social-media a img {
    width: 40px;
    height: 40px;
    margin: 10px 0;
    border-radius: 50%;
}

@media (max-width: 600px) {
    .profile-photo {
        width: 150px;
        margin: 0 auto 20px;
    }

    nav ul {
        flex-direction: column;
    }

    nav ul li {
        margin: 5px 0;
    }

    .home-container {
        flex-direction: column;
    }

    .social-media {
        flex-direction: row;
        justify-content: center;
        margin: 10px 0;
    }
}