/* General Reset */


body, h1, h2, p, ul, li, a, button, input, textarea {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

/* Hero Section */
.hero {
    background: linear-gradient(to right, #6a11cb, #2575fc);
    color: white;
    padding: 60px 20px;
    text-align: center;
    min-height: 120px;
}

.hero .btn-primary, .hero .btn-secondary {
    margin: 10px;
    padding: 10px 20px;
    border: none;
    text-decoration: none;
    color: white;
    border-radius: 5px;
}

.hero .btn-primary {
    background: #ff6f61;
}

.hero .btn-secondary {
    background: #4caf50;
}

/* Sections */
.container {
    width: 90%;
    max-width: 800px;
    margin: 20px auto;
    text-align: center;
}

.about, .services, .why-choose-us, .contact {
    padding: 40px 20px;
}

ul {list-style: none;
}

/* Footer */
.footer {
    display:flex;
    justify-content: center;
    align-items: center;
    background: #000000;
    color: white;
    padding: 20px;
    text-align: center;
    height: 160px;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        font-size: 14px;
    }

    .container {
        text-align: left;
    }
}
