

.about-rec-wrapper {
    background-color: var(--fe-off-white);
    padding: 3rem 0;
}

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

.rec-content {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 2.5rem;
}

.program-description-hr {
    height: 4px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--fe-primary-gold) 15%, 
        var(--fe-primary-gold) 85%, 
        transparent 100%);
    border: none;
    margin: 2rem 0;
    position: relative;
}

.program-description-hr::before,
.program-description-hr::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background-color: var(--fe-primary-gold);
    border-radius: 50%;
}

.program-description-hr::before {
    left: 12%;
}

.program-description-hr::after {
    right: 12%;
}

/* Program Description Block - Simple Text */
.content-block.program-description {
    padding: 1.5rem 0;
}

.program-description h2 {
    color: var(--fe-dark-green-1);
    font-weight: 600;
    margin-bottom: 1.2rem;
    font-size: 1.3rem;
}

.program-description h3 {
    color: #4a5568;
    font-weight: 600;
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
}

.program-description p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* Simple Colored List Items */
.program-description ol {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
    counter-reset: list-counter;
}

.program-description ol li {
    counter-increment: list-counter;
    margin-bottom: 1rem;
    padding-left: 2.5rem;
    position: relative;
    line-height: 1.6;
    color: #4a5568;
}

.program-description ol li::before {
    content: counter(list-counter) ".";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--fe-primary-gold);
    font-weight: 600;
    font-size: 1rem;
}

.program-description ul {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0;
}

.program-description ul li {
    margin-bottom: 0.8rem;
    padding-left: 1.8rem;
    position: relative;
    line-height: 1.6;
    color: #4a5568;
}

.program-description ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--fe-primary-green);
    font-weight: 700;
    font-size: 1.2rem;
}

.program-description strong {
    color: var(--fe-dark-green-1);
    font-weight: 600;
}

.program-description em {
    font-style: italic;
    color: var(--fe-dark-green-2);
}

/* REC Manager Service Box */
.rec-manager-box {
    background: var(--fe-off-white);
    padding: 2rem;
    margin: 1rem 0;
    border-radius: 6px;
    border-left: 3px solid var(--fe-primary-green);
}

.rec-manager-box h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.rec-manager-box p {
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 1rem;
}

/* Brand Color Styling */
.brand-teal {
    color: var(--fe-primary-green);
    font-weight: 600;
}

.brand-orange {
    color: var(--fe-primary-gold);
    font-weight: 600;
}

/* Commission Section - Less Flashy */
.commission-section {
    background: white;
    border: 1px solid #e2e8f0;
    padding: 1.2rem;
    margin: 1.5rem 0;
    border-radius: 4px;
}

.commission-section h4 {
    color: var(--fe-dark-green-1);
    font-size: 1rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.commission-section p {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: #4a5568;
}

.commission-section strong {
    color: var(--fe-dark-green-1);
    font-weight: 600;
}

/* Contract Note */
.contract-note {
    font-size: 0.9rem;
    color: #718096;
    font-style: italic;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

/* Call to Action Section - Less Flashy */
.cta-section-simple {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 2px solid var(--fe-off-white);
}

.cta-box {
    background: white;
    border: 2px solid var(--fe-primary-green);
    padding: 2rem;
    border-radius: 6px;
    text-align: center;
}

.cta-box h3 {
    color: var(--fe-dark-green-1);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.cta-box p {
    color: #4a5568;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    background-color: var(--fe-primary-gold);
    color: white !important;
    padding: 0.75rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: var(--fe-dark-gold);
    transform: translateY(-1px);
}

.cta-subtext {
    font-size: 0.9rem;
    color: #718096;
    margin-top: 1.2rem;
}

.cta-subtext a {
    color: var(--fe-primary-green);
    text-decoration: none;
    font-weight: 500;
}

.cta-subtext a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-rec-wrapper {
        padding: 2rem 0;
    }

    .rec-container {
        padding: 0 15px;
    }

    .rec-content {
        padding: 1.8rem;
    }

    .rec-manager-box {
        padding: 1.5rem;
    }

    .program-description h2 {
        font-size: 1.2rem;
    }

    .rec-manager-box h3 {
        font-size: 1.1rem;
    }

    .cta-box {
        padding: 1.5rem;
    }

    .cta-box h3 {
        font-size: 1.2rem;
    }

    .cta-button {
        padding: 0.65rem 1.5rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .rec-content {
        padding: 1.5rem;
    }

    .program-description ol li,
    .program-description ul li {
        padding-left: 2rem;
    }

    .commission-section {
        padding: 1rem;
    }

    .program-description-hr::before {
        left: 8%;
    }

    .program-description-hr::after {
        right: 8%;
    }
}


   /* Pricing Table with Two Columns */
.price-info-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.price-description-col {
    width: 50%;
    vertical-align: top;
    padding-right: 25px;
}

.price-data-col {
    width: 50%;
    vertical-align: top;
    padding-left: 25px;
    border-left: 2px solid #e5e5e5;
    margin-right: 1rem;
}

.price-description-col .pricing-title {
    font-size: 17px;
    font-weight: 700;
    color: #FFA500;
    margin: 0 0 15px 0;
}

.price-description-col .pricing-note {
    font-size: 13px;
    color: #666666;
    line-height: 1.6;
    margin: 0;
}

.price-description-col .pricing-note strong {
    color: #333333;
    font-weight: 600;
}

.date-col {
    color: #666666;
    font-size: 12px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .price-info-table {
        display: block;
    }
    
    .price-description-col,
    .price-data-col {
        display: block;
        width: 100%;
        padding: 0;
        border-left: none;
    }
    
    .price-description-col {
        margin-bottom: 20px;
        padding-bottom: 20px;
        border-bottom: 2px solid #e5e5e5;
    }
}