
body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #3d3530;
    color: #f4f1ee;
    line-height: 1.6;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.hero-section {
    padding: 40px 0;
    position: relative;
    max-width: 842px;
    margin: 0 auto;
}

.main-img {
    width: 100%;
    height: auto;
    aspect-ratio: 842 / 1174;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    background: rgba(61, 53, 48, 0.8);
    padding: 30px;
    border-radius: 8px;
    box-sizing: border-box;
}

h1 {
    color: #d4a373;
    font-size: 2.5rem;
    margin: 0 0 15px 0;
    text-transform: uppercase;
}

.hero-overlay p {
    font-size: 1.1rem;
    margin: 0;
}

.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    padding: 40px 0;
    background-color: #4a413a;
    border-radius: 12px;
    margin: 40px 0;
}

.feature-item {
    flex: 1 1 250px;
    padding: 20px;
}

.feature-item h3 {
    color: #d4a373;
    margin-bottom: 10px;
}

.map-block {
    padding: 40px 0;
}

.map-container {
    width: 100%;
    height: 400px;
    background: #2b2521;
    border-radius: 8px;
    overflow: hidden;
}

iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(1) invert(0.9);
}

footer {
    padding: 40px 0;
    border-top: 1px solid #5a5048;
    font-size: 0.9rem;
    color: #a3968c;
}

@media (max-width: 600px) {
    h1 {
        font-size: 1.6rem;
    }
    .hero-overlay {
        width: 90%;
        padding: 15px;
    }
    .hero-overlay p {
        font-size: 0.95rem;
    }
    .hero-section {
        padding: 20px 0;
    }
}

.coffee-benefits-block {
    padding: 40px 0;
}

.benefits-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.benefit-item {
    flex: 1 1 250px;
    background-color: rgba(74, 65, 58, 0.6);
    padding: 20px;
    border-radius: 12px;
    box-sizing: border-box;
}

.benefit-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
}

.benefit-item h3 {
    color: #d4a373;
    margin: 0 0 10px 0;
    font-size: 1.6rem;
    text-transform: uppercase;
}

.benefit-item p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
    color: #f4f1ee;
}
