/* RESET */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

/* BODY */

body{

font-family:'Segoe UI',sans-serif;
color:#ffffff;
text-align:center;

background-size:cover;
background-position:center;
background-attachment:fixed;

min-height:100vh;

}

/* HEADER */

.page-header{

padding:25px;

background:rgba(0,0,0,0.6);
backdrop-filter:blur(6px);

}

.page-header h1{

font-size:34px;
font-weight:800;
color:#22c55e;

}

/* HERO */

.hero{

padding:80px 20px;

}

.hero h2{

font-size:44px;
font-weight:800;
color:#22c55e;

margin-bottom:10px;

}

.hero p{

font-size:20px;
color:#ffffff;

}

/* GLASS CARD */

.container{

max-width:900px;
margin:40px auto;

padding:50px;

/* glass effect */

background:rgba(0,0,0,0.45);

backdrop-filter:blur(12px);

border-radius:18px;

border:1px solid rgba(255,255,255,0.2);

box-shadow:0 15px 40px rgba(0,0,0,0.7);

transition:0.3s;

}

/* HOVER EFFECT */

.container:hover{

transform:translateY(-6px);

}

/* TEXT */

.container h3{

font-size:30px;
font-weight:700;

color:#22c55e;

margin-bottom:15px;

}

.container p{

font-size:19px;
line-height:1.8;

color:#ffffff;

margin-bottom:15px;

}

/* FOOTER */

.site-footer{

margin-top:60px;

padding:35px;

background:rgba(0,0,0,0.7);

border-top:2px solid #a855f7;

}

/* FOOTER LINKS */

.footer-links{

margin-bottom:15px;

}

.footer-links a{

font-size:18px;

color:#ffffff;

text-decoration:none;

margin:0 15px;

transition:0.3s;

}

/* HOVER COLOR */

.footer-links a:hover{

color:#22c55e;

}

/* COPYRIGHT */

.site-footer p{

font-size:16px;

color:#e5e7eb;

}

/* PAGE BACKGROUND IMAGES */

/*.about-page{*/
/*background-image:url("../img/aboutus.png");*/
/*}*/

/*.contact-page{*/
/*background-image:url("../img/contactus.png");*/
/*}*/

/*.privacy-page{*/
/*background-image:url("../img/privacy-policy.png");*/
/*}*/

/*.terms-page{*/
/*background-image:url("../img/term-conditions.png");*/
/*}*/

/*.disclaimer-page{*/
/*background-image:url("../img/disclaimer.png");*/
/*}*/