*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Inter',sans-serif;
    background:red;
    color:#374151;
    display:flex;
    justify-content:center;
    align-items:center;
    min-height:100vh;
    padding:40px 20px;
}

.container{
    width:100%;
    max-width:760px;
    background:white;
    padding:60px;
    border-radius:22px;
    text-align:center;
    box-shadow:0 20px 60px rgba(0,0,0,.08);
    animation:fade .8s ease;
}

.logo{
    width:180px;
    margin-bottom:30px;
}

h1{
    font-size:50px;
    font-weight:700;
    color:#1f2937;
    margin-bottom:5px;
}

h2{
    font-size:24px;
    font-weight:400;
    color:#16a34a;
    letter-spacing:3px;
    margin-bottom:35px;
}

h3{
    font-size:36px;
    font-weight:600;
    color:#1f2937;
    margin-bottom:25px;
}

h4{
    font-size:22px;
    margin-bottom:10px;
    color:#1f2937;
}

p{
    font-size:18px;
    line-height:1.8;
    margin-bottom:18px;
    color:#555;
}

.btn{
    display:inline-block;
    margin:35px 0;
    padding:16px 40px;
    background:#16a34a;
    color:white;
    text-decoration:none;
    border-radius:12px;
    font-size:18px;
    font-weight:600;
    transition:.25s;
}

.btn:hover{
    background:#15803d;
}

hr{
    border:none;
    border-top:1px solid #e5e7eb;
    margin:45px 0;
}

.contact{
    text-align:center;
}

.contact a{
    display:block;
    margin:18px 0;
    color:#374151;
    text-decoration:none;
    font-size:19px;
    line-height:1.7;
    transition:.25s;
}

.contact a:hover{
    color:#16a34a;
}

.schedule{
    margin-top:15px;
}

footer{
    margin-top:35px;
    color:#9ca3af;
    font-size:14px;
}

@keyframes fade{
    from{
		opacity:0;
        transform:translateY(25px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}

@media(max-width:768px){
	.container{
		padding:35px;
	}

	.logo{
		width:140px;
	}

	h1{
		font-size:36px;
	}

	h2{
		font-size:18px;
	}

	h3{
		font-size:28px;
	}

	p{
		font-size:16px;
	}

	.contact a{
		font-size:17px;
	}

	.btn{
		width:100%;
	}

}
