main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

h1 {
    font-size: 48px;
    color: #f49fb6;
    text-align: center;
    margin-bottom: 10px;
}

.welcome {
    font-size: 24px;
    color: #f49fb6;
    text-align: center;
    margin-bottom: 60px;
}

section {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-bottom: 80px;
}

section:nth-child(odd) {
    flex-direction: row;
}

.founders {
    flex-direction: row;
}

.content {
    flex: 1;
}

.image {
    flex: 1;
}

.image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

h2 {
    font-size: 36px;
    color: #f49fb6;
    margin-bottom: 20px;
}

p {
    font-size: 16px;
    line-height: 1.6;
    color: #f49fb6;
}

.cta {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.cta p {
    font-size: 18px;
    color: #f49fb6;
}

.mission, .vision {
    flex-direction: row;
}

.founders {
    flex-direction: row;
} 