:root {
    --rb-primary: #8bc34a;
    /* Fresh Green */
    --rb-primary-light: #dcedc8;
    --rb-primary-dark: #689f38;
    --rb-accent: #ffeb3b;
    /* Joyful Yellow */
    --rb-accent-light: #fff9c4;
    --rb-text: #333;
    --rb-text-light: #666;
    --rb-white: #ffffff;
    --rb-bg-soft: #f9fbe7;
}

.rb-page {
    font-family: 'Outfit', sans-serif;
    color: var(--rb-text);
    line-height: 1.6;
    background-color: var(--rb-white);
}

/* Hero Section */
.rb-hero {
    padding: 80px 0;
    text-align: center;
    background-color: var(--rb-bg-soft);
    border-bottom: 5px solid var(--rb-primary);
    position: relative;
    overflow: hidden;
}

.rb-hero::before {
    content: "☀️";
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 4rem;
    opacity: 0.1;
}

.rb-hero::after {
    content: "🌿";
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-size: 4rem;
    opacity: 0.1;
}

.rb-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--rb-primary-dark);
    margin-bottom: 0.5rem;
    font-weight: 800;
    line-height: 1.1;
}

.rb-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: var(--rb-text-light);
    margin-bottom: 2rem;
    font-style: italic;
}

/* Countdown */
.rb-countdown {
    background: var(--rb-white);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: inline-block;
    margin: 20px 0;
    border: 2px dashed var(--rb-primary);
}

.rb-countdown p {
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--rb-primary-dark);
}

.rb-timer {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.rb-timer-item {
    display: flex;
    flex-direction: column;
    min-width: 70px;
}

.rb-timer-item span:first-child {
    font-size: 2rem;
    font-weight: 800;
    color: var(--rb-primary);
}

.rb-timer-item span:last-child {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--rb-text-light);
}

/* Buttons */
.btn-rb-primary {
    background-color: var(--rb-primary);
    color: white !important;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 195, 74, 0.4);
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
}

.btn-rb-primary:hover {
    background-color: var(--rb-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 195, 74, 0.6);
}

/* Main Content area */
.rb-main-content {
    padding: 60px 0;
}

.rb-section-title {
    text-align: center;
    color: var(--rb-primary-dark);
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.rb-section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--rb-accent);
    border-radius: 2px;
}

/* Workshop Grid */
.rb-workshop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.rb-workshop-card {
    background: var(--rb-white);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid var(--rb-primary-light);
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.rb-workshop-card:hover {
    transform: translateY(-5px);
    border-color: var(--rb-primary);
}

.rb-workshop-card h3 {
    color: var(--rb-primary);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.rb-workshop-card ul {
    list-style: none;
    padding: 0;
}

.rb-workshop-card li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.rb-workshop-card li::before {
    content: "✨";
    position: absolute;
    left: 0;
}

/* Testimonials */
.rb-testimonials {
    background-color: var(--rb-bg-soft);
    padding: 80px 0;
    margin: 40px 0;
}

.rb-testimonial-card {
    background: var(--rb-white);
    padding: 40px;
    border-radius: 25px;
    margin-bottom: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
    position: relative;
}

.rb-testimonial-card blockquote {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
}

.rb-testimonial-card blockquote::before {
    content: "«";
    font-size: 4rem;
    position: absolute;
    top: -20px;
    left: -30px;
    color: var(--rb-primary-light);
    opacity: 0.5;
}

.rb-testimonial-author {
    font-weight: 700;
    color: var(--rb-primary-dark);
}

/* CTA Card */
.rb-offer-card {
    background: linear-gradient(135deg, var(--rb-primary), var(--rb-primary-dark));
    color: white;
    padding: 50px;
    border-radius: 30px;
    text-align: center;
    margin: 60px 0;
}

.rb-offer-card h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: white;
}

.rb-pricing-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.rb-price-option {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 20px;
    min-width: 250px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.rb-price-option.featured {
    background: var(--rb-white);
    color: var(--rb-text);
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.rb-price-option.featured .amount {
    color: var(--rb-primary-dark);
}

.rb-price-option .amount {
    font-size: 3rem;
    font-weight: 800;
    display: block;
    margin: 10px 0;
}

/* Footer info */
.rb-guarantee {
    margin-top: 30px;
    font-weight: 600;
    font-size: 1.1rem;
}

.rb-footer-meta {
    padding: 40px 0;
    text-align: center;
    font-size: 0.9rem;
    color: var(--rb-text-light);
    border-top: 1px solid var(--rb-primary-light);
}

.rb-footer-meta a {
    color: var(--rb-primary);
    text-decoration: none;
}

@media (max-width: 768px) {
    .rb-pricing-grid {
        flex-direction: column;
    }

    .rb-price-option.featured {
        transform: none;
    }
}