/* Resetting default browser styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f8f8f8; /* Light gray background */
    color: #333; /* Dark gray text */
}

/* Logo styles */
.center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
}

/* Container styles */
.container {
    width: 80%;
    margin: auto;
    padding: 20px;
}

/* Header styles */
header {
    background-color: #ffffff; /* White background */
    box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* Subtle shadow */
    padding: 10px 0;
}

header h1 {
    font-size: 2em;
    color: #333; /* Dark gray text */
    text-align: center;
}

header nav ul {
    list-style-type: none;
    text-align: center;
    margin-top: 10px;
}

header nav ul li {
    display: inline;
    margin: 0 10px;
}

header nav ul li a {
    text-decoration: none;
    color: #555; /* Medium gray link color */
    transition: color 0.3s ease;
}

header nav ul li a:hover {
    color: #000; /* Darken link color on hover */
}

/* Section styles */
.section {
    padding: 40px 0;
    text-align: center;
}

.section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #333; /* Dark gray text */
}

.section p {
    font-size: 1.1em;
    color: #666; /* Medium gray text */
}

/* Services grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    justify-items: center;
    margin-top: 20px;
}

.service {
    text-align: center;
    padding: 20px;
    background-color: #ffffff; /* White background */
    box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* Subtle shadow */
    border-radius: 5px;
}

.service img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 15px;
}

.service h3 {
    font-size: 1.5em;
    color: #333; /* Dark gray text */
}

.service p {
    font-size: 1em;
    color: #666; /* Medium gray text */
}

/* Gallery styles */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    margin-top: 20px;
}

.gallery-item img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0,0,0,0.1); /* Subtle shadow */
}

/* Footer styles */
footer {
    background-color: #ffffff; /* White background */
    text-align: center;
    padding: 10px 0;
    margin-top: 20px;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.1); /* Inset shadow on top */
}

footer p {
    font-size: 0.9em;
    color: #666; /* Medium gray text */
}
