/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f4f4f4;
    color: #333;
}

.container {
    width: 80%;
    margin: 0 auto;
}

/* Header */
header {
    background-color: #1a1a1a;
    color: white;
    padding: 60px 0;
    text-align: center;
}

header h1 {
    font-size: 3em;
    margin-bottom: 20px;
}

header p {
    font-size: 1.2em;
    margin-bottom: 40px;
}

.cta-buttons .btn {
    background-color: #00bcd4;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    margin: 10px;
    border-radius: 5px;
}

.cta-buttons .btn:hover {
    background-color: #007c91;
}

/* Section Styles */
section {
    padding: 60px 0;
}

h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
}

.service-cards, .project-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.service-card, .project-card {
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin: 10px;
    width: 22%;
    border-radius: 8px;
}

.service-card h3, .project-card h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: white;
    padding: 30px 0;
    text-align: center;
}

footer .footer-links {
    list-style-type: none;
    padding: 0;
}

footer .footer-links li {
    display: inline;
    margin: 0 15px;
}

footer .footer-links a {
    color: white;
    text-decoration: none;
}

footer .social-media a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
}

/* Contact Form */
form input, form textarea {
    width: 100%;
    padding: 15px;
    margin: 10px 0;
    border-radius: 5px;
    border: 1px solid #ccc;
}

form button {
    background-color: #00bcd4;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

form button:hover {
    background-color: #007c91;
}
