body {
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    padding: 0;
    background: #f5f5f5;
    color: #333;
}

header {
    background: #4CAF50;
    color: white;
    padding: 1.5rem 1rem;
    text-align: center;
}

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1rem;
    background: white;
}
    .hero-row {
        flex-direction: row;
        justify-content: center;
        gap: 2rem;
    }

    .hero-text {
        max-width: 500px;
        text-align: left;
    }

    .hero-text p {
        text-align: left;
    }


    .hero img {
        width: 150px;
        height: 150px;
        border-radius: 50%;
        margin-bottom: 1rem;
        border: 4px solid #4CAF50;
    }

    .hero h1 {
        font-size: 2rem;
        margin: 0.5rem 0;
    }

    .hero p {
        font-size: 1.2rem;
        max-width: 600px;
        text-align: left;
        margin: 0.5rem auto 1.5rem;
    }

    .hero a {
        background: #4CAF50;
        color: white;
        text-decoration: none;
        padding: 0.75rem 1.5rem;
        border-radius: 25px;
        font-weight: bold;
        transition: background 0.3s ease;
    }

        .hero a:hover {
            background: #388e3c;
        }

.section {
    padding: 2rem 1rem;
    background: #fff;
    max-width: 800px;
    margin: auto;
}

    .section h2 {
        text-align: center;
        color: #4CAF50;
        margin-bottom: 1rem;
    }

    .section p {
        font-size: 1.1rem;
        line-height: 1.6;
    }

footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 1rem;
    font-size: 0.9rem;
}
