/* General Styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #999999;
    color: #333333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

/* Header */
header {
    background-color: #333333;
    color: white;
    padding: 15px 0;
    text-align: center;
}

/* Navigation */
nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

/* Parallax Effect */
.parallax {
    background-image: url('images/slide1.png');
    min-height: 300px;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
    text-align: center;
}

/* About Cards */
.about-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.about-card {
    background: #d9751e;
    padding: 20px;
    border-radius: 10px;
    color: white;
    width: 30%;
}

/* Footer */
footer {
    background-color: #a67f5d;
    color: white;
    padding: 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 40px;
    text-align: center;
}

.service-item {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.service-item h3 {
    font-size: 1.4em;
    color: #d9751e;
    /* Secondary color */
    margin: 15px 0 10px;
}

.service-item p {
    color: #666666;
    /* Third color */
    font-size: 1em;
}