/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body */
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f4f4f4;
}

/* Header */
header {
    background-color: #3f51b5;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

header h1 {
    font-size: 2.5rem;
}

header nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
}

header nav ul li {
    margin: 0 15px;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
}

/* Sections */
section {
    padding: 40px 0;
}

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

h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
}

/* Service Section */
.service-card {
    display: inline-block;
    width: 30%;
    margin: 10px;
    text-align: center;
}

.service-card img {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.service-card h3 {
    font-size: 1.5rem;
    color: #3f51b5;
}

/* Contact Form */
.contact-form form {
    display: grid;
    gap: 10px;
}

input, textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    background-color: #3f51b5;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #303f9f;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    padding: 20px 0;
    text-align: center;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .service-card {
        width: 100%;
    }
    
    header nav ul {
        flex-direction: column;
    }

    header h1 {
        font-size: 2rem;
    }
}
