.thanks-hero{
    padding:120px 0 80px;
    background:#F5F1EB;
}

.thanks-hero .container{
    max-width:1100px;
    margin:0 auto;
    padding:0 20px;
}

.thanks-card{
    max-width:640px;
    margin:0 auto;
    text-align:center;
    background:#ffffff;
    padding:60px 50px;
    border-radius:14px;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.thanks-card h1{
    font-size:38px;
    margin-bottom:20px;
    color:#2f2f2f;
}

.thanks-text{
    font-size:18px;
    line-height:1.6;
    color:#4A403A;
    margin-bottom:20px;
}

.thanks-contact{
    font-size:16px;
    color:#4A403A;
    margin-bottom:30px;
}

.thanks-contact strong{
    display:block;
    margin-top:6px;
    font-size:18px;
    color:#1E1E1E;
}

.thanks-contact a{
    color:var(--color-primary);
    text-decoration:none;
    font-weight:600;
}

.thanks-contact a:hover{
    text-decoration:underline;
}

.thanks-buttons{
    margin-top:30px;
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

.thanks-buttons .btn{
    min-width:220px;
}

.thanks-instagram{
    padding:80px 0 120px;
    background:#ffffff;
}

.thanks-instagram .container{
    max-width:1200px;
    margin:0 auto;
    padding:0 20px;
}

.thanks-instagram .section-header{
    text-align:center;
    margin-bottom:50px;
}

.thanks-instagram .section-header h2{
    font-size:36px;
    margin-bottom:10px;
}

.thanks-instagram .section-header p{
    color:#4A403A;
}

.thanks-instagram .services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}

.thanks-instagram .service-card{
    border-radius:14px;
    overflow:hidden;
    background:#fff;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
    transition:transform .25s ease, box-shadow .25s ease;
}

.thanks-instagram .service-card:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 40px rgba(0,0,0,0.08);
}

.thanks-instagram .service-image img{
    width:100%;
    height:380px;
    object-fit:cover;
    display:block;
}

.thanks-instagram-button{
    text-align:center;
    margin-top:40px;
}

@media (max-width:1024px){
    .thanks-instagram .services-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media (max-width:768px){
    .thanks-hero{
        padding:80px 0 60px;
    }
    .thanks-card{
        padding:40px 30px;
    }
    .thanks-card h1{
        font-size:30px;
    }
    .thanks-text{
        font-size:16px;
    }
    .thanks-buttons{
        flex-direction:column;
        align-items:center;
    }
    .thanks-buttons .btn{
        width:100%;
        max-width:260px;
    }
    .thanks-instagram .services-grid{
        grid-template-columns:1fr;
    }
}

@media (max-width:480px){
    .thanks-card{
        padding:35px 25px;
    }
    .thanks-card h1{
        font-size:26px;
    }
}