body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    color: #cdd61f;
    background-color: #fafafa;
    overflow-x: hidden;
}

header {
    background-color: #e4d537;
    color: white;
    padding: 1em 0;
    text-align: center;
    box-shadow: 0 4px 8px rgba(235, 186, 9, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header h1 {
    margin: 0;
    font-size: 2.8em;
    font-weight: 700;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

nav ul li {
    display: inline;
    margin: 0 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #a5d6a7;
}

.hero {
    background: url('501dcd8f398b2fe2ad65c4e6695502d6.jpeg') no-repeat center center/cover;
    color: white;
    padding: 6em 1em;
    text-align: center;
    position: relative;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h2 {
    margin: 0;
    font-size: 3em;
    font-weight: bold;
    animation: fadeInUp 1s ease-out;
}

.hero p {
    font-size: 1.5em;
    margin-top: 0.5em;
    animation: fadeInUp 1.5s ease-out;
}

.btn {
    display: inline-block;
    padding: 0.7em 2em;
    margin-top: 1em;
    font-size: 1.1em;
    color: white;
    background-color: #004d40;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #00332e;
}

.content {
    padding: 4em 2em;
    text-align: center;
    background-color: #ffffff;
    animation: fadeIn 2s ease-out;
}

.content h2 {
    margin-top: 0;
    font-size: 2.5em;
    color: #00796b;
}

.section {
    padding: 4em 2em;
    background-color: #e0f2f1;
    animation: fadeIn 2s ease-out;
}

.section h2 {
    margin-top: 0;
    font-size: 2.5em;
    color: #00796b;
}

.service-box {
    max-width: 400px;
    margin: 2em auto;
    padding: 1.5em;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    text-align: center;
}

.service-box img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.service-box h3 {
    margin: 1em 0 0.5em;
    font-size: 2em;
}

.service-box p {
    font-size: 1.2em;
    line-height: 1.6;
}

.service-box:hover {
    transform: translateY(-10px);
}

.contact {
    background-color: #ffffff;
}

footer {
    background-color: #00796b;
    color: white;
    padding: 1em 0;
    text-align: center;
    box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.2);
}

footer p {
    margin: 0;
    font-size: 1.1em;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
