ling */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    background-color: #f9f5f0;
    color: #4b2e05;
}

header {
    background-color: #a3753c;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

h1, h2, h3 {
    color: #4b2e05;
}

/* Section Layout */
.section {
    padding: 50px 10%;
    background-color: skyblue;
    margin: 40px auto;
    box-shadow: 0 4px 10px rgba(75, 46, 5, 0.2);
    border-radius: 12px;
}

/* Flex layout for text + image */
.content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.content.reverse {
    flex-direction: row-reverse;
}

/* Image Styling */
.image-box {
    flex: 1;
}

.image-box img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(75, 46, 5, 0.3);
}

/* Text Styling */
.text {
    flex: 1;
}

.text p {
    line-height: 1.6;
}

/* Core Values Section */
.core-values {
    background-color: #f3e6d4;
    text-align: center;
}

.core-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.core-item {
    background-color: #fff;
    width: 250px;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(75, 46, 5, 0.25);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.core-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin: 10px 0;
    box-shadow: 0 3px 6px rgba(75, 46, 5, 0.3);
}

.core-item p {
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Footer */
footer {
    background-color: #a3753c;
    color: white;
    text-align: center;
    padding: 1rem 0;
    margin-top: 40px;
    border-top: 3px solid #4b2e05;
}
