* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border-radius: 8px; /* Rounded corners for all elements */
}
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #ddd; /* Light text for dark mode */
    background-color: #121212; /* Dark background */
}
.container {
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
}
/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #333; /* Darker shade for navbar */
    padding: 10px;
}
.navbar a {
    color: #8f9296; /* Soft light color for text */
    text-decoration: none;
    padding: 10px 20px;
}
.navbar a:hover {
    background-color: #575757; /* Slightly lighter for hover */
}
/* Hero */
.hero {
    background: #1a1a1a; /* Dark background for hero section */
    color: #ddd;
    padding: 100px 0;
    text-align: center;
}
/* Services */
.services, .process {
    background: #222; /* Slightly lighter background for sections */
    color: #ddd;
    padding: 50px 20px;
    text-align: center;
}
.service-item, .process-step {
    margin-top: 20px;
    padding: 20px;
    background: #333; /* Dark background for items */
    cursor: pointer; /* Indicate clickable */
    transition: transform 0.3s ease;
}
.service-item:hover, .process-step:hover {
    transform: translateY(-5px);
}
/* About */
.about {
    padding: 50px 20px;
    background: #222;
    color: #ddd;
}
/* Contact */
.contact {
    background: #333;
    color: #ddd;
    padding: 50px 20px;
    text-align: center;
}
input, textarea, button {
    width: calc(100% - 20px);
    padding: 10px;
    margin-top: 10px;
    border: 1px solid #575757;
    background-color: #333;
    color: #ddd;
}
button {
    cursor: pointer;
    border: none;
}
button:hover {
    background-color: #575757;
}
/* Modal */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
    padding-top: 60px;
}
.modal-content {
    background-color: #333;
    margin: 5% auto; /* 5% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Could be more or less, depending on screen size */
}
/* enhance the visibility of links on a dark background */
.hero a, a:visited, a:hover, a:active {
    color: #f8f9fa; /* Light color for visibility */
    text-decoration: none; /* Removes underline from links */
}
.hero a:hover {
    text-decoration: underline; /* Underline on hover for better user interaction */
}
.modal-content a, a:visited, a:hover, a:active {
    color: #f8f9fa; /* Light color for visibility */
    text-decoration: none; /* Removes underline from links */
}
.modal-content a:hover {
    text-decoration: underline; /* Underline on hover for better user interaction */
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}
.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: white;
    margin-top: 20px;
}
