*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:Arial, Helvetica, sans-serif;
background:#f5f7fb;
color:#222;
text-align:center;
line-height:1.6;
}



.container{
max-width:900px;
margin:auto;
padding:20px;
}



.header{
background:white;
border-bottom:1px solid #eee;
padding:20px;
}

.logo{
font-size:22px;
font-weight:bold;
}



.vsl-section{
padding:60px 20px;
}



.headline{
font-size:32px;
max-width:750px;
margin:auto;
margin-bottom:15px;
}



.subheadline{
font-size:18px;
color:#555;
max-width:600px;
margin:auto;
margin-bottom:30px;
}



.video-container{
position:relative;
padding-bottom:56.25%;
height:0;
overflow:hidden;
border-radius:10px;
box-shadow:0 10px 30px rgba(0,0,0,0.1);
}

.video-container video{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
}



.cta-box{
display:none;
margin-top:40px;
}



.cta-button{
background:#2a63ff;
color:white;
padding:18px 40px;
font-size:18px;
border-radius:6px;
text-decoration:none;
font-weight:bold;
}

.cta-button:hover{
background:#1c45c7;
}



.footer{
background:#111;
color:white;
padding:40px 20px;
margin-top:60px;
}

.footer-links{
margin-top:10px;
}

.footer-links a{
color:white;
margin:0 10px;
text-decoration:none;
font-size:14px;
}



@media (max-width:768px){

.headline{
font-size:24px;
}

.subheadline{
font-size:16px;
}

.cta-button{
font-size:16px;
padding:16px 30px;
}

}