/* General Styles */


/* Container */
.about {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header Section */
.header {
    background-color: #ffffff;
    color: #333;
    text-align: center;
    /* padding: 60px 20px; */
    border-bottom: 1px solid #ddd;
}

.header h1 {
    font-size: 3em;
    margin-bottom: 10px;
}

.header p {
    font-size: 1.2em;
}

/* About Section */
.about-section {
    background-color: #ffffff;
    padding: 40px 20px;
    margin-top: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.about-section h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2em;
}

.about-section p {
    font-size: 1.1em;
    line-height: 1.6;
    text-align: center;
}

/* Values Section */
.values-section {
    display: flex;
    justify-content: space-around;
    background-color: #f9f9f9;
    padding: 40px 20px;
    margin-top: 20px;
    border-radius: 8px;
    gap: 20px;
}

.value-card {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    flex: 1;
}

.value-card h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.value-card p {
    font-size: 1.1em;
    line-height: 1.6;
}



