*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{

background:url('http://aichihospitalltd.com/assets/unnamed.jpg') center center/cover no-repeat;

min-height:100vh;

display:flex;

justify-content:center;

align-items:center;

padding:20px;

position:relative;

overflow:auto;

}

.overlay{

position:absolute;

width:100%;
height:100%;

background:rgba(7,22,45,.75);

backdrop-filter:blur(6px);

}

.container{

position:relative;

z-index:5;

width:100%;

max-width:700px;

}

.card{

background:rgba(255,255,255,.10);

border:1px solid rgba(255,255,255,.18);

backdrop-filter:blur(15px);

padding:45px;

border-radius:25px;

text-align:center;

box-shadow:0 25px 60px rgba(0,0,0,.35);

animation:fade 1.2s ease;

}

@keyframes fade{

from{

opacity:0;

transform:translateY(40px);

}

to{

opacity:1;

transform:none;

}

}

.hospital-img{

width:170px;

height:170px;

object-fit:cover;

border-radius:18px;

border:5px solid rgba(255,255,255,.3);

margin-bottom:25px;

box-shadow:0 10px 30px rgba(0,0,0,.35);

}

h1{

color:#fff;

font-size:38px;

margin-bottom:15px;

font-weight:700;

}

.construction{

color:#6FE6C7;

font-size:20px;

font-weight:600;

margin-bottom:18px;

}

.desc{

color:#ddd;

line-height:1.8;

font-size:16px;

margin-bottom:35px;

}

.info{

margin-bottom:30px;

}

.item{

display:flex;

align-items:flex-start;

justify-content:center;

gap:15px;

color:#fff;

text-align:left;

}

.item i{

font-size:24px;

margin-top:5px;

color:#6FE6C7;

}

.item h4{

font-size:18px;

margin-bottom:5px;

}

.item p{

line-height:1.8;

color:#ddd;

}

.buttons{

margin-bottom:30px;

}

.buttons a{

display:inline-flex;

align-items:center;

gap:10px;

padding:15px 35px;

border-radius:60px;

text-decoration:none;

background:#00B894;

color:#fff;

font-weight:600;

transition:.35s;

}

.buttons a:hover{

transform:translateY(-4px);

background:#009977;

box-shadow:0 10px 30px rgba(0,184,148,.45);

}

.footer{

border-top:1px solid rgba(255,255,255,.15);

padding-top:22px;

color:#ddd;

font-size:15px;

}

.footer span{

color:#6FE6C7;

font-weight:700;

}

@media(max-width:768px){

.card{

padding:30px 25px;

}

h1{

font-size:28px;

}

.construction{

font-size:18px;

}

.desc{

font-size:15px;

}

.item{

flex-direction:column;

align-items:center;

text-align:center;

}

.hospital-img{

width:140px;

height:140px;

}

.buttons a{

width:100%;

justify-content:center;

}

}

@media(max-width:480px){

h1{

font-size:24px;

}

.construction{

font-size:17px;

}

.desc{

font-size:14px;

}

.footer{

font-size:13px;

}

}