.pb-hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    font-family: Georgia, 'Times New Roman', serif;
	border-top-right-radius: 15px;

border-top-left-radius: 15px;
}
.pb-slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    display: flex;
    align-items: center;
/* 	border-radius:12px; */
	overflow:hidden;
}

.pb-slide.active {
    opacity: 1;
    z-index: 1;
}

.pb-overlay {
    position: absolute;
    top: 0; left: 0;
/*     width: 40%;  */
	height: 100%;
/*     background: linear-gradient(90deg, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0.55) 45%, rgba(255,255,255,0.1) 100%); */
}

.pb-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 40px 60px;
}

.pb-tag {
    color: #2f4a34;
    font-family: Arial, sans-serif;
    font-weight: bold;
    letter-spacing: 2px;
    font-size: 14px;
}

.pb-content h1 {
    font-size: 52px;
    color: #1c1c1c;
    margin: 15px 0;
    line-height: 1.15;
}

.pb-content h1 em {
    color: #2f4a34;
    font-style: italic;
}

.pb-content p {
    font-family: Arial, sans-serif;
    font-size: 17px;
    color: #333;
    margin-bottom: 25px;
    line-height: 1.5;
}

.pb-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.pb-btn {
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 1px;
    padding: 16px 28px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.pb-btn-filled {
    background: #2f4a34;
    color: #fff;
}
.pb-btn-filled:hover {
    background: #1c331f;
    color: #fff;
}

.pb-btn-outline {
    background: transparent;
    color: #2f4a34;
    border: 1.5px solid #2f4a34;
}
.pb-btn-outline:hover {
    background: #2f4a34;
    color: #fff;
}

.pb-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 10px;
}

.pb-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.6);
    border: 1px solid #2f4a34;
    cursor: pointer;
}

.pb-dot.active {
    background: #2f4a34;
}

.pb-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    background: rgba(255,255,255,0.7);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 18px;
    color: #2f4a34;
    cursor: pointer;
}

.pb-arrow-left { left: 20px; }
.pb-arrow-right { right: 20px; }

@media (max-width: 768px) {
    .pb-hero-slider { height: 500px; }
    .pb-content { padding: 20px 25px; max-width: 100%; }
    .pb-content h1 { font-size: 34px; }
    .pb-overlay { background: rgba(255,255,255,0.75); }
}
