:root { 
    --primary-color: #269ccc;
    --secondary-color: #3d3d3f;
    --background-color: #f6f5f3;
    --section-bg-color: #ffffff;
    --text-color: #3d3d3f;
    --heading-color: #3d3d3f;
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --radius-md: 0.5rem;
    --radius-sm: 0.375rem;
}

body {
    font-family: Arial, sans-serif;
    color: var(--text-color);
    background-color: var(--background-color);
    margin: 0;
    line-height: 1.75;
}

header {
    background: var(--secondary-color);
    color: #ffffff;
    padding: 20px 0;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 2.5em;
}

header p {
    margin: 5px 0;
    font-size: 1.2em;
}

header a {
    color: #ffffff;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
}

header a:hover {
    background-color: var(--primary-color);
    text-decoration: underline;
    transform: translateY(-2px);
}

.image-section {
    display: flex;
    justify-content: center;
    gap: 20px; /* Space between images */
    padding: 20px;
    background-color: var(--section-bg-color);
    border-radius: var(--radius-md);
    margin: 20px auto;
    width: 80%; /* Adjust width to suit your layout */
    box-shadow: var(--shadow-md);
}

.image-section img {
    width: calc(33.33% - 20px); /* 3 images with space adjustment */
    flex-shrink: 0;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-section img:hover {
    transform: scale(1.05); /* Slight zoom effect */
    box-shadow: 0 6px 10px -2px rgb(0 0 0 / 0.15); /* Enhanced shadow on hover */
}

.about {
    display: flex;
    align-items: center;
    padding: 40px 20px;
    text-align: justify;
    background: var(--section-bg-color);
    color: var(--text-color);
    border-radius: var(--radius-md);
    margin: 20px;
    box-shadow: var(--shadow-md);
}

.about img {
    flex: 1;
    max-width: 20%; /* 1/5 of the section width */
    margin-right: 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.about-content {
    flex: 4; /* Remaining 4/5 of the section width */
}

.about h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: var(--primary-color);
}

footer {
    background: var(--secondary-color);
    color: white;
    text-align: center;
    padding: 10px 0;
}

footer a {
    color: var(--primary-color);
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}
