@charset "UTF-8";
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  background:#f7f5f1;
  color:#555;
  font-family:sans-serif;
  line-height:1.7;
}

a{
  text-decoration:none;
  color:inherit;
}

header{
  text-align:center;
  padding:60px 20px 40px;
}

header h1{
  font-size:36px;
  font-weight:normal;
  color:#607466;
  margin-bottom:12px;
}

header p{
  font-size:14px;
  color:#888;
}

.container{
  width:90%;
  max-width:720px;
  margin:auto;
  padding-bottom:80px;
}

.main-card{
  background:white;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 4px 14px rgba(0,0,0,0.05);
  margin-bottom:25px;
}

.main-card img{
  width:100%;
  height:260px;
  object-fit:cover;
  display:block;
}

.main-text{
  padding:24px;
}

.main-text h2{
  font-size:24px;
  font-weight:normal;
  margin-bottom:12px;
  color:#607466;
}

.main-text p{
  color:#666;
  font-size:15px;
}

.service-list{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}

.service{
  background:white;
  padding:22px;
  border-radius:16px;
  box-shadow:0 4px 14px rgba(0,0,0,0.05);
  transition:0.2s;
}

.service:hover{
  transform:translateY(-3px);
}

.service h3{
  font-size:18px;
  font-weight:normal;
  margin-bottom:8px;
  color:#607466;
}

.service p{
  font-size:13px;
  color:#777;
}

footer{
  text-align:center;
  padding:40px 20px;
  font-size:12px;
  color:#999;
}

@media(max-width:600px){

  .service-list{
    grid-template-columns:1fr;
  }

  header h1{
    font-size:30px;
  }

  .main-card img{
    height:200px;
  }
}