*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#0f0f0f;
    color:#fff;
    min-height:100vh;
}

.review-page{
    display:flex;
    justify-content:center;
    align-items:center;
    min-height:100vh;
    padding:30px;
}

.hero{
    width:100%;
    max-width:700px;
    background:#1a1a1a;
    border-radius:25px;
    padding:50px 35px;
    text-align:center;
    box-shadow:0 20px 60px rgba(0,0,0,.45);
    border:2px solid #d4af37;
}

.logo{
    width:130px;
    height:130px;
    border-radius:50%;
    border:3px solid #d4af37;
    object-fit:cover;
    margin-bottom:25px;
}

.review-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;

    width:100%;
    max-width:100%;

    padding:18px 30px;
    margin:25px auto;

    background:#FFD700;
    color:#111;

    text-decoration:none;
    border-radius:50px;

    font-size:20px;
    font-weight:700;

    transition:.3s;
    box-shadow:0 10px 25px rgba(255,215,0,.35);
}

.review-btn:hover{
    background:#FFC107;
    transform:translateY(-4px);
}

.review-btn i{
    color:#4285F4;
    font-size:24px;
}

.review-btn span{
    color:#111;
}

.hero h1{
    font-size:36px;
    color:#FFD700;
    font-weight:800;
}

.hero h2{
    margin-top:8px;
    color:#ffffff;
    font-size:18px;
    font-weight:500;
}

.stars{
    font-size:42px;
    color:#FFD700;
    margin:30px 0 15px;
    letter-spacing:6px;
}

.thanks{
    font-size:28px;
    font-weight:700;
    margin-bottom:15px;
}

.message{
    color:#cccccc;
    line-height:1.8;
    font-size:17px;
    margin-bottom:35px;
}

@media (max-width:768px){

.hero{
    padding:35px 20px;
}

.hero h1{
    font-size:28px;
}

.hero h2{
    font-size:16px;
}

.stars{
    font-size:30px;
}

.thanks{
    font-size:22px;
}

.message{
    font-size:15px;
}

.logo{
    width:100px;
    height:100px;
}

.review-btn{
    width:100%;
    max-width:100%;
    font-size:17px;
    padding:16px 20px;
}

.action-buttons a{
    font-size:16px;
    padding:15px;
}

.action-buttons a i{
    font-size:20px;
}

}

.action-buttons{
    margin-top:30px;
    display:flex;
    flex-direction:column;
    gap:18px;
}

.action-buttons a{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;

    width:100%;

    padding:18px 25px;

    border-radius:50px;

    text-decoration:none;

    font-size:18px;
    font-weight:600;

    transition:.3s;
}

.action-buttons a i{
    font-size:22px;
}

.call-btn{
    background:#ff9800;
    color:#fff;
}

.call-btn:hover{
    background:#f57c00;
}

.wa-btn{
    background:#25D366;
    color:#fff;
}

.wa-btn:hover{
    background:#1EBE5D;
}

.website-btn{
    background:#2b2b2b;
    color:#fff;
}

.website-btn:hover{
    background:#111;
}

.action-buttons a:hover{
    transform:translateY(-4px);
    box-shadow:0 12px 25px rgba(0,0,0,.35);
}

.glow{
    transform:scale(1.08);
    transition:.4s;
    text-shadow:
    0 0 10px #FFD700,
    0 0 20px #FFD700,
    0 0 30px #FFD700;
}
