


:root{

    --brand-rose:#B37A86;
    --brand-cream:#FDF8F7;
    --brand-dark:#2D2D2D;
    --brand-gold:#D4AF37;

}
/* =========================================
   RESET
========================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html,
body{
    width:100%;
    overflow-x:hidden;
     font-family: 'Cormorant Garamond', serif;
}

ul{
    list-style:none;
}

a{
    text-decoration:none;
}

/* =========================================
   CONTAINER
========================================= */
.site-logo{
    height:60px;
    width:auto;
    display:block;
}

@media(max-width:991px){

    .site-logo{
        height:45px;
    }

}
.container{
    width:100%;
    max-width:1400px;
    margin:0 auto;
    padding:0 20px;
}

.page-section{
    padding:60px 0;
}

.page-header{
    margin-bottom:30px;
}

.page-header h1,
.page-section h1{
    font-size:40px;
    font-weight:700;
    color:#222;
    margin-bottom:20px;
}

.page-content{
    line-height:1.9;
    color:#555;
}

.page-section form{
    display:grid;
    gap:15px;
}

.page-section input,
.page-section textarea{
    width:100%;
    padding:12px 15px;
    border:1px solid #ddd;
    border-radius:8px;
}

.page-section textarea{
    min-height:150px;
}

.page-section button{
    height:50px;
    border:none;
    background:#b47c89;
    color:#fff;
    border-radius:8px;
    cursor:pointer;
}

.faq-item,
.blog-card,
.career-card{
    background:#fff;
    border:1px solid #eee;
    padding:20px;
    border-radius:12px;
    margin-bottom:15px;
}

.blog-grid,
.career-grid{
    display:grid;
    grid-template-columns:
        repeat(auto-fill,minmax(280px,1fr));
    gap:20px;
}

@media(max-width:768px){

    .page-section{
        padding:30px 0;
    }

    .page-header h1,
    .page-section h1{
        font-size:28px;
    }
}

.custom-pagination{

    display:flex;

    justify-content:center;

    align-items:center;

    flex-wrap:wrap;

    gap:10px;

    margin-top:30px;

}

.custom-pagination a,
.custom-pagination span{

    min-width:42px;

    height:42px;

    padding:0 16px;

    display:flex;

    align-items:center;

    justify-content:center;

    text-decoration:none;

    border:1px solid #dcdcdc;

    border-radius:8px;

    background:#fff;

    color:#333;

    transition:.25s;

    font-size:14px;

}

.custom-pagination a:hover{

    background:#315E41;

    color:#fff;

    border-color:#315E41;

}

.custom-pagination a.active{

    background:#315E41;

    color:#fff;

    border-color:#315E41;

}

.custom-pagination .disabled{

    background:#f5f5f5;

    color:#999;

    cursor:not-allowed;

}