*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
background:#f8f8f8;
line-height:1.7;
color:#333;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

header{
background:#d32f2f;
position:sticky;
top:0;
z-index:999;
}

header .container{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 0;
}

.logo{
font-size:28px;
font-weight:700;
color:white;
}

nav ul{
display:flex;
list-style:none;
gap:20px;
}

nav ul li a{
color:white;
text-decoration:none;
font-weight:500;
}

.hero{
padding:80px 20px;
text-align:center;
background:white;
}

.hero h1{
font-size:42px;
margin-bottom:20px;
}

.hero p{
font-size:18px;
max-width:700px;
margin:auto;
}

.hero-buttons{
margin-top:30px;
}

.btn{
display:inline-block;
padding:14px 28px;
background:#d32f2f;
color:white;
text-decoration:none;
border-radius:8px;
margin:10px;
}

.adsense-box{
background:#eeeeee;
border:1px solid #ddd;
min-height:120px;
margin:40px 0;
display:flex;
align-items:center;
justify-content:center;
font-weight:600;
}

.tools-section{
padding:60px 0;
}

.tools-section h2{
text-align:center;
margin-bottom:40px;
}

.tool-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:25px;
}

.tool-card{
background:white;
padding:30px;
border-radius:12px;
box-shadow:0 2px 10px rgba(0,0,0,.08);
text-align:center;
}

.tool-card h3{
margin-bottom:15px;
}

.card-btn{
display:inline-block;
margin-top:15px;
background:#d32f2f;
color:white;
padding:10px 20px;
text-decoration:none;
border-radius:6px;
}

.content-section{
padding:60px 0;
background:white;
}

.content-section h2{
margin:30px 0 15px;
}

.content-section ul{
padding-left:20px;
}

footer{
background:#d32f2f;
color:white;
padding:40px 20px;
text-align:center;
margin-top:50px;
}

.footer-links{
margin-bottom:15px;
}

.footer-links a{
color:white;
text-decoration:none;
margin:0 10px;
}

@media(max-width:768px){

header .container{
flex-direction:column;
}

nav ul{
flex-direction:column;
text-align:center;
margin-top:15px;
}

.hero h1{
font-size:30px;
}

}
/* photocompressor page*/
.tool-container{
max-width:900px;
margin:50px auto;
background:#fff;
padding:30px;
border-radius:10px;
box-shadow:0 2px 10px rgba(0,0,0,.1);
}

.form-group{
margin-bottom:20px;
}

label{
display:block;
font-weight:600;
margin-bottom:8px;
}

input{
width:100%;
padding:12px;
border:1px solid #ddd;
border-radius:5px;
}

button{
background:#d32f2f;
color:white;
padding:12px 25px;
border:none;
border-radius:5px;
cursor:pointer;
}

.preview-section{
margin-top:30px;
text-align:center;
}

canvas{
border:1px solid #ddd;
max-width:100%;
}
.signature-note{
font-size:14px;
color:#666;
margin-top:10px;
}
/* Contact Page */
/* CONTACT PAGE */

.contact-page{
max-width:900px;
margin:50px auto;
background:#fff;
padding:40px;
border-radius:10px;
box-shadow:0 2px 10px rgba(0,0,0,.08);
}

.contact-page h1{
text-align:center;
margin-bottom:25px;
color:#d32f2f;
}

.contact-page p{
margin-bottom:15px;
text-align:justify;
}

.contact-box{
margin-top:30px;
padding-top:20px;
border-top:1px solid #eee;
}

.contact-box h2{
color:#d32f2f;
margin-bottom:15px;
}

@media(max-width:768px){

.contact-page{
padding:25px;
margin:20px;
}

}
/*FAQ Page*/
.faq-container{
background:#fff;
padding:30px;
border-radius:10px;
box-shadow:0 2px 10px rgba(0,0,0,.08);
margin-top:30px;
}

.faq-container h2{
font-size:22px;
margin-top:30px;
margin-bottom:10px;
color:#d32f2f;
}

.faq-container p{
margin-bottom:15px;
line-height:1.8;
}
/* Hand symbol*/
.hand-btn{
display:inline-flex;
align-items:center;
gap:8px;
}

.hand{
display:inline-block;
animation:point 1s infinite;
}

@keyframes point{
0%{
transform:translateX(0);
}
50%{
transform:translateX(6px);
}
100%{
transform:translateX(0);
}
}
/*sample image*/
.sample-photo{
    width:250px;
    max-width:100%;
    height: auto;
    border:1px solid #ddd;
    border-radius:8px;
    box-shadow:0 2px 8px rgba(0,0,0,.15);
    display:block;
    margin:20px auto;
}