body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #f4f4f4;
}

.container {
    width: 80%;
    margin: 0 auto;
    padding: 20px 0;
}

header {
    background-color: #fff;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #ff69b4; /* Pink */
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #333; /* Changed to black for contrast */
    font-weight: bold;
}

.hero {
    background-color: #333;
    text-align: center;
    padding: 100px 0;
}

.hero h1 {
    font-size: 48px;
    color: #ff69b4; /* Pink */
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.btn {
    display: inline-block;
    background-color: #ff69b4; /* Pink */
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}

.services, .about, .why-choose-us, .contact {
    padding: 60px 0;
    text-align: center;
    background-color: #222;
}

.services h2, .about h2, .why-choose-us h2, .contact h2 {
    font-size: 36px;
    color: #ff69b4; /* Pink */
    margin-bottom: 40px;
}

.service-list, .benefits-list {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.service-item, .benefit-item {
    background-color: #1a1a1a;
    border: 1px solid #444;
    padding: 30px;
    border-radius: 8px;
    width: 45%; /* Adjust as needed */
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.service-item h3, .benefit-item h3 {
    color: #ff69b4; /* Pink */
    font-size: 24px;
    margin-bottom: 15px;
}

.contact form {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.contact form input, .contact form textarea {
    padding: 10px;
    border: 1px solid #444;
    border-radius: 5px;
    font-size: 16px;
    background-color: #333;
    color: #f4f4f4;
}

.contact form textarea {
    min-height: 100px;
}

footer {
    background-color: #1a1a1a;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}

footer p {
    margin: 5px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        width: 90%;
    }

    header .container {
        flex-direction: column;
    }

    nav ul {
        margin-top: 10px;
    }

    nav ul li {
        margin: 0 10px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .service-item, .benefit-item {
        width: 100%;
    }
} 