.top-part{
    position:relative;
    height:70vh;
}


.background-img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
}


.top-text{
    position:absolute;
    left:50%;top:50%;
    transform:translate(-50%,-50%);
    width:min(1100px,92%);
    text-align:center;
    z-index:1;
    color: white;
}

.top-text h1{
    color: white;
}


.title{
    margin:0 0 .25em 0;
    line-height:1.05;
}


.subtitle{
    margin:0;
    opacity:.9;
}


.feature-title{
    width:min(1200px,92%);
    margin:40px auto 24px;
    text-align:center;
}


.container-body{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:14px;
    width:min(1200px,92%);
    margin:0 auto 60px;
}


.product{
    width:210px;
}


.product-img{
    width:100%;
    height:auto;
    display:block;
    border-radius:8px;
}


html,body{
    height:100%;
}


body{
    min-height:100vh;
    display:flex;
    flex-direction:column;
}


main{
    flex:1;
}

footer{
    margin-top:auto;
}


.col-6 img{
    height: 350px;
    object-fit: cover;
}


.scroll-btn {
    display: inline-block;
    margin-top: 40px;
    padding: 14px 38px;
    font-size: 18px;
    color: #fff;
    font-family: "Segoe UI", Arial, sans-serif;
    background: linear-gradient(90deg, #d4a373 0%, #c6945f 100%);
    border-radius: 16px;
    text-decoration: none;
    font-weight: 500;
}

.scroll-btn:hover {
    transform: none;
    color: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(90deg, #e0b685 0%, #d19a61 100%);
}

html {
    scroll-behavior: smooth;
}

.section-title {
    color: #80521c;
    font-family: 'Segoe UI', Arial, sans-serif;
    font-weight: 700;
    font-size: 36px;
}

.cheese-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.cheese-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.cheese-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.cheese-card:hover .cheese-img {
    transform: scale(1.05);
}

.cheese-info {
    padding: 20px;
}

.cheese-info h5 {
    color: #80521c;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}

.cheese-info p {
    color: #6b5b4b;
    font-size: 15px;
    margin: 0;
}

.faq-section {
    padding: 100px 0;
}

.faq-title {
    color: #80521c;
    font-family: 'Segoe UI', Arial, sans-serif;
    font-size: 36px;
    font-weight: 700;
}

.faq-subtitle {
    color: #6b5b4b;
    font-size: 18px;
    margin-top: 10px;
}

.faq-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 15px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-item:hover {
    transform: translateY(-3px);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    cursor: pointer;
}

.faq-question h4 {
    color: #4a3b2d;
    font-size: 18px;
    flex: 1;
    margin: 0 15px;
    text-align: left;
}

.faq-number {
    font-weight: bold;
    color: #d4a373;
    font-size: 20px;
}

.toggle-icon {
    font-size: 20px;
    color: #d4a373;
    transition: transform 0.3s ease;
}

.faq-item.active .toggle-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: all 0.4s ease;
}

.faq-item.active .faq-answer {
    padding: 20px 25px;
    max-height: 200px;
}

.faq-answer p {
    color: #6b5b4b;
    margin: 0;
    line-height: 1.6;
}







