body{
margin:0;
padding:0;
font-family:Arial, sans-serif;
background:#d8b59b;
}

.container{
max-width:1200px;
margin:auto;
padding:40px 20px;
}

section{
margin-bottom:50px;
border-radius:25px;
overflow:hidden;
box-shadow:0 15px 35px rgba(0,0,0,0.12);
background:white;
}

/* HERO */
.hero{
display:grid;
grid-template-columns:1fr 1fr;
}

.hero-left{
background:#f7ece4;
display:flex;
justify-content:center;
align-items:end;
padding:40px;
}

.hero-left img{
height:360px;
border-radius:20px;
object-fit:cover;
}

.hero-right{
padding:40px;
background:#fff;
}

.topbar{
display:flex;
justify-content:space-between;
align-items:center;
}

.topbar h1{
font-size:32px;
color:#f4a261;
}

.topbar h1 span{
color:black;
}

nav a{
margin-left:20px;
text-decoration:none;
color:#444;
font-size:14px;
}

nav a:hover{
color:#f4a261;
}

.hero-text{
margin-top:80px;
}

.hero-text h2{
font-size:42px;
line-height:1.3;
color:#222;
}

button{
margin-top:20px;
padding:12px 25px;
border:none;
background:#f4a261;
color:white;
border-radius:30px;
font-weight:bold;
cursor:pointer;
}

button:hover{
background:#e38d48;
}

/* POPULAR */
.popular{
display:grid;
grid-template-columns:250px 1fr;
}

.popular-title{
background:#f0a15b;
color:white;
padding:40px;
font-size:30px;
font-weight:bold;
}

.cards{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;
padding:40px;
}

.quote-card{
padding:30px;
border-radius:25px;
background:white;
box-shadow:0 10px 20px rgba(0,0,0,0.08);
transition:0.3s;
}

.quote-card:hover{
transform:translateY(-8px);
}

.quote-card h3{
font-size:28px;
margin-bottom:15px;
}

.quote-card p{
color:#666;
line-height:1.6;
}

.quote-card span{
display:block;
margin-top:20px;
color:#f4a261;
font-weight:bold;
}

/* FEATURE */
.feature{
display:grid;
grid-template-columns:1fr 1fr;
}

.feature-left{
padding:40px;
display:flex;
align-items:center;
}

.glass{
padding:35px;
border-radius:25px;
background:rgba(255,255,255,0.7);
backdrop-filter:blur(10px);
}

.glass h2{
font-size:40px;
color:#f4a261;
}

.glass p{
margin-top:20px;
font-size:18px;
color:#444;
line-height:1.6;
}

.glass span{
display:block;
margin-top:15px;
font-weight:bold;
}

.feature-right{
background:#f0a15b;
display:flex;
justify-content:center;
align-items:center;
padding:30px;
}

.feature-right img{
height:380px;
border-radius:25px;
object-fit:cover;
}

/* MOBILE */
@media(max-width:900px){

.hero,
.popular,
.feature{
grid-template-columns:1fr;
}

.cards{
grid-template-columns:1fr;
}

.topbar{
flex-direction:column;
gap:20px;
}

nav a{
margin:0 10px;
}

.hero-text h2{
font-size:30px;
}

}

.pager{
margin-top:30px;
display:flex;
align-items:center;
gap:10px;
}

.pager button{
padding:10px 14px;
border:none;
background:white;
color:#f4a261;
border-radius:50%;
font-weight:bold;
cursor:pointer;
}

.pager span{
font-size:20px;
font-weight:bold;
}