* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

header {
    text-align: center;
    padding: 40px 0;
    border-bottom: 2px solid #498BA1;
}

header h1 {
    color: #498BA1;
    font-size: 2rem;
}

main {
    padding: 40px 0;
}

section {
    margin-bottom: 60px;
}

h2 {
    color: #1e293b;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.bio-container {
    display: flex;
    gap: 30px;
    align-items: start;
}

.bio-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.bio-text p {
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.ferryfriend {
    background-color: #f9fafb;
    padding: 30px;
    border-radius: 8px;
}

.ff-content {
    display: flex;
    gap: 30px;
    align-items: start;
}

.ff-logo {
    flex-shrink: 0;
}

.ff-logo img {
    border-radius: 20px;
}

.ff-description p {
    margin-bottom: 20px;
}

.app-links {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.app-links a {
    display: block;
}

.ff-link {
    color: #498BA1;
    text-decoration: none;
    font-weight: 600;
}

.ff-link:hover {
    text-decoration: underline;
}

.ff-screenshots {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.screenshot {
    max-width: 200px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.contact a {
    color: #498BA1;
    text-decoration: none;
    font-size: 1.1rem;
}

.contact a:hover {
    text-decoration: underline;
}

footer {
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid #e5e5e5;
    color: #666;
}

@media (max-width: 600px) {
    .bio-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .ff-content {
        flex-direction: column;
        align-items: center;
    }

    .ff-logo, .ff-description {
        text-align: center;
    }

    .app-links {
        justify-content: center;
    }

    .screenshot {
        max-width: 150px;
    }
}
