*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Times New Roman', Times, serif;
    background:#f5f5f5;
    color:#333;
    line-height:1.6;
}

.container{
    width:90%;
    max-width:1100px;
    margin:auto;
}

header{
    background:#222;
    color:white;
    padding:20px 0;
}

header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

nav ul{
    list-style:none;
    display:flex;
    gap:20px;
}

nav a{
    color:white;
    text-decoration:none;
    transition:.3s;
}

nav a:hover{
    color:#4CAF50;
}

.hero{
    background:#4CAF50;
    color:white;
    text-align:center;
    padding:100px 20px;
}

.hero h2{
    font-size:48px;
    margin-bottom:20px;
}

.hero p{
    font-size:20px;
    margin-bottom:30px;
}

.button{
    background:white;
    color:#4CAF50;
    padding:15px 30px;
    text-decoration:none;
    border-radius:5px;
    font-weight:bold;
}

.button:hover{
    background:#f0f0f0;
}

.services,
.about,
.contact{
    padding:80px 0;
}

.services h2,
.about h2,
.contact h2{
    text-align:center;
    margin-bottom:40px;
}

.service-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.card{
    background:white;
    padding:30px;
    border-radius:10px;
    box-shadow:0 5px 15px rgba(0,0,0,.1);
}

.card h3{
    margin-bottom:15px;
}

.contact{
    text-align:center;
}

.contact button{
    margin-top:20px;
    padding:15px 35px;
    border:none;
    background:#4CAF50;
    color:white;
    cursor:pointer;
    border-radius:5px;
    font-size:16px;
}

.contact button:hover{
    background:#3b9442;
}

footer{
    background:#222;
    color:white;
    text-align:center;
    padding:20px;
}

@media(max-width:768px){

header .container{
    flex-direction:column;
    gap:15px;
}

nav ul{
    flex-direction:column;
    text-align:center;
}

.hero h2{
    font-size:34px;
}

}
html {
  scroll-behavior: smooth;
}
.page{
    padding:100px 20px;
    min-height:80vh;
}

.page h2{
    margin-bottom:20px;
}

.page p{
    margin-bottom:30px;
}