

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}


header {
    background: black;
    color: white;
    padding-top: 20px;
    padding-bottom: 20px;
    border-bottom: gray 3px solid;
    border-radius: 50px;
}

header .container img {
    height: 50px; 
    vertical-align: middle;
}

header nav ul {
    list-style-type: none;
    text-align: center;
}

header nav ul li {
    display: inline;
    margin-left: 20px;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    text-transform: uppercase;
}


#home {
    background: #f4f4f4;
    padding: 50px 0;
    text-align: center;
}

#home h1 {
    font-size: 36px;
    margin-bottom: 20px;
    display: inline;
}

#home p {
    font-size: 20px;
}


section {
    padding: 50px ;
}

section h2 {
    font-size: 30px;
    text-align: center;
    margin-bottom: 30px;
}

section p {
    text-align: center;
    margin-bottom: 30px;
}


.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.service {
    text-align: center;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.service img {
    max-width: 100%;
    margin-bottom: 10px;
}

.service h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.service p {
    font-size: 16px;
}

