<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.hero-section {
    position: relative;
    width: 100vw; 
    margin-left: calc(50% - 50vw);
    background: url("https://dzenway.com/wp-content/uploads/2025/04/dzenway-nature-bg.webp") center / cover no-repeat;
    z-index: 0;
    margin-top: -211px;
    height: 800px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1170px;
    margin: 0 auto;
    align-items: center;
    padding-top: 206px;
}

.page-content {
    margin: 0 15px;
}

.hero-left {
    color: #fff;
    text-align: left;
    max-width: 600px;
    width: 600px;
    z-index: 2;
}

.hero-left h1 {
    font-size: 48px;
    line-height: 55px;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
    margin-bottom: 20px;
}

.hero-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-end;
    z-index: 2;
}

.hero-cat-item {
    width: 280px;
    max-width: 280px;
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(240, 247, 244, 0.75);
    padding: 15px;
    border-radius: 15px;
    transition: background 0.3s ease;
}

.hero-cat-item:hover {
    background-color: #d6e9dd;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.hero-cat-icon {
    width: 65px;
    height: 65px;
}

.hero-cat-link {
    color: #111;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
}

.hero-cat-link:hover {
    text-decoration: underline;
}

.benefit-card p {
    color: #111;
    line-height: 1.5;
    text-align: left;
    margin: 0;
}

.benefits-section {
    padding: 30px 20px;
    color: #000;
}

.benefits-section .section-title {
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 16px;
}

.section-title {
    position: relative;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    padding-bottom: 12px;
    display: inline-block;
}

.section-title::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 48px;
    height: 3px;
    background-color: #f6b40e;
    border-radius: 2px;
}

.benefits-section .section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 18px;
    color: #111;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.benefit-card {
    background: #fff;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    text-align: left;
    transition: transform 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    border: 1px solid var(--color-card-border);
}

.benefit-card:hover {
    transform: translateY(-4px);
}

.benefit-icon-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

.benefit-icon {
    width: 65px;
    height: 65px;
}

.benefit-card h3 {
    margin: 10px 0 10px 0;
    color: #222;
}</pre></body></html>