body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

#header {
    background-color: hsl(170, 75%, 41%);
    color: white;
    padding: 10px 0;
    text-align: center;
}

#main-title {
    margin: 0;
}

#main-content {
    padding: 20px;
    max-width: 900px;
    margin: auto;
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#about-section {
    margin-bottom: 20px;
}

#values-section {
    margin-bottom: 20px;
}

#values-title {
    color: hsl(170, 75%, 41%);
    text-align: center;
}

.values-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.value-card {
    background-color: #e0e0e0;
    margin: 10px;
    padding: 20px;
    border-radius: 5px;
    width: 250px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.value-card h3 {
    margin-top: 10px;
    color: hsl(170, 75%, 41%);
}

.value-icon {
    width: 50px;
    height: 50px;
}

#join-section {
    text-align: center;
    margin-bottom: 20px;
}

#footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
    position: absolute;
    bottom: 0;
    width: 100%;
}
