.pro-pp-container-banner {
    background-image: url('../images/pro_pp_container/pro_pp_container_banner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 50px 20px;
    text-align: center;
    color: green;
    position: relative;
    margin-top: 110px;
}

.pro-pp-container-page .ppc-best-section {
    position: relative;
    background-image: url('../images/pro_pp_container/pp-container_01.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 80px 20px;
    text-align: center;
}

.pro-pp-container-page .ppc-best-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 0;
}

.pro-pp-container-page .ppc-best-section>* {
    position: relative;
    z-index: 1;
}

.pro-pp-container-page .ppc-best {
    position: relative;
    background-image: url('../images/raffia-quality.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 80px 20px;
    text-align: center;
}

.pro-pp-container-page .ppc-best::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 0;
}

.pro-pp-container-page .ppc-best>* {
    position: relative;
    z-index: 1;
}

.pro-pp-container-page .ppc-best-title,
.pro-pp-container-page .ppc-best-list {
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
}

.pro-pp-container-page .ppc-best-title {
    color: #fff;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 28px;
    line-height: 1.25;
}

.pro-pp-container-page .ppc-best-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-block;
    text-align: left;
}

.pro-pp-container-page .ppc-best-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 1rem;
}

.pro-pp-container-page .ppc-best-list li i {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #ffc107;
    color: #1b5e20;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex: 0 0 34px;
    margin-top: 2px;
}

.pro-pp-container-page .ppc-product-details {
    padding: 0px 20px;
    background: #f8f9fa;
}

.pro-pp-container-page .ppc-product-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 30px 20px;
    margin-top: 100px;
}

.pro-pp-container-page .ppc-product-image {
    flex: 1;
    max-width: 500px;
}

/* Main product image styles handled globally in common.css */

.pro-pp-container-page .ppc-product-description {
    flex: 1;
}

.pro-pp-container-page .ppc-product-description h2 {
    font-size: 1.4rem;
    line-height: 1.4;
    color: #2e7d32;
    margin-bottom: 20px;
    font-weight: 700;
    white-space: normal;
}

.pro-pp-container-page .ppc-premium-bullet {
    list-style: none;
    padding: 0;
    margin: 1px;
    text-align: left;
}

.pro-pp-container-page .ppc-premium-bullet li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 5px;
    line-height: 1.6;
    color: #333;
    font-size: 1.05rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.pro-pp-container-page .ppc-premium-bullet li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1px;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pro-pp-container-page .ppc-premium-bullet li::after {
    content: '✓';
    position: absolute;
    left: 6px;
    top: 1px;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    z-index: 1;
}

.pro-pp-container-page .ppc-premium-bullet li:hover {
    transform: translateX(5px);
    color: #27ae60;
}

.pro-pp-container-page .ppc-premium-bullet li:hover::before {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    box-shadow: 0 2px 8px rgba(39, 174, 96, 0.3);
}

.pro-pp-container-page .ppc-product-variants-section {
    background-color: #e8f5e8;
    padding: 2px 20px;
    text-align: center;
}

.pro-pp-container-page .ppc-product-variants-title {
    font-size: 1.8rem;
    line-height: 1.4;
    color: #2e7d32;
    margin-bottom: 20px;
    font-weight: 700;
    white-space: normal;
    margin-top: 20px;
}

.pro-pp-container-page .ppc-product-variants-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    /* max-width: 1200px; */
    margin: 0 auto;
    /* margin-left: 16px; */
}

.pro-pp-container-page .ppc-product-variant-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.pro-pp-container-page .ppc-product-variant-card:hover {
    transform: translateY(-5px);
}

.pro-pp-container-page .ppc-product-variant-image-container {
    /* background-color: #f0f0f0; */
    /* height: 150px; */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.pro-pp-container-page .ppc-product-variant-image-container img {
    max-width: 100%;
    max-height: 136%;
    object-fit: contain;
}

.pro-pp-container-page .ppc-product-variant-label {
    background-color: #4CAF50;
    color: white;
    padding: 12px 8px;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pro-pp-container-page .ppc-categories-section {
    padding: 11px 20px;
    background-color: beige;
}

.pro-pp-container-page .ppc-categories-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.pro-pp-container-page .ppc-categories-content {
    flex: 1;
    max-width: 550px;
    line-height: 1.2;
}

.pro-pp-container-page .ppc-categories-image {
    flex: 1;
    max-width: 550px;
}

.pro-pp-container-page .ppc-categories-image img {
    width: 100%;
    height: auto;
    max-height: 400px;
}

.pro-pp-container-page .ppc-categories-title {
    font-size: 1.4rem;
    line-height: 1.4;
    color: #2e7d32;
    margin-bottom: 20px;
    font-weight: 700;
    white-space: normal;
    margin-top: 20px;
}

.pro-pp-container-page .ppc-categories-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 7px;
    line-height: 1.5;
    margin-top: -10px;
    text-align: left;
}

.pro-pp-container-page .ppc-showcase-section {
    padding: 20px 20px;
    background-color: #f8f9fa;
}

.pro-pp-container-page .ppc-showcase-container {
    max-width: 1200px;
    margin: 0px auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.pro-pp-container-page .ppc-showcase-image {
    flex: 1;
    max-width: 550px;
}

.pro-pp-container-page .ppc-showcase-image img {
    width: 100%;
    height: auto;
   
}

.pro-pp-container-page .ppc-showcase-content {
    flex: 1;
    max-width: 550px;
}

.pro-pp-container-page .ppc-showcase-title {
    font-size: 1.4rem;
    line-height: 1.4;
    color: #2e7d32;
    margin-bottom: 20px;
    font-weight: 700;
    white-space: normal;
    margin-top: 20px;
}

.pro-pp-container-page .ppc-showcase-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 5px;
    line-height: 1.6;
    text-align: left;
}

.pro-pp-container-page .custom-logo-section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 20px 20px;
}

.pro-pp-container-page .custom-logo-content {
    flex: 1;
    max-width: 650px;
}

.pro-pp-container-page .custom-logo-content h2 {
    font-size: 1.4rem;
    line-height: 1.4;
    color: #2e7d32;
    margin-bottom: 20px;
    font-weight: 700;
    white-space: normal;
}

.pro-pp-container-page .custom-logo-intro {
    font-size: 0.98rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 16px;
}

.pro-pp-container-page .custom-logo-simple-list {
    margin: 0;
    padding-left: 18px;
    color: #555;
    line-height: 1.7;
}

.pro-pp-container-page .custom-logo-simple-list li {
    margin-bottom: 8px;
}

.pro-pp-container-page .custom-logo-image-container {
    flex: 0 0 520px;
    max-width: 520px;
}

.pro-pp-container-page .custom-logo-image {
    width: 100%;
    height: auto;
    display: block;
}

.pro-pp-container-page .ppc-contact-gradient-section {
    background: linear-gradient(135deg, #2e7d32 0%, #43a047 100%);
    padding: 17px 20px;
}

.pro-pp-container-page .ppc-contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.pro-pp-container-page .ppc-contact-green-layout {
    display: flex;
    gap: 60px;
    justify-content: space-between;
}

.pro-pp-container-page .ppc-contact-form-section {
    flex: 0 0 45%;
    transition: all 1s ease-out;
}

.pro-pp-container-page .ppc-contact-content-section {
    flex: 0 0 50%;
    transition: all 1s ease-out;
}

.pro-pp-container-page .ppc-contact-form-container {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.pro-pp-container-page .ppc-contact-form-group {
    margin-bottom: 20px;
    width: 93%;
}

.pro-pp-container-page .ppc-contact-form-section h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #fff;
    margin-top: 25px;
}

.pro-pp-container-page .ppc-contact-content-section h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.pro-pp-container-page .ppc-contact-form-group input,
.pro-pp-container-page .ppc-contact-form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.pro-pp-container-page .ppc-contact-form-group input::placeholder,
.pro-pp-container-page .ppc-contact-form-group textarea::placeholder {
    color: #666;
}

.pro-pp-container-page .ppc-contact-form-group input:focus,
.pro-pp-container-page .ppc-contact-form-group textarea:focus {
    outline: none;
    border-color: #ffc107;
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.2);
}

.pro-pp-container-page .ppc-contact-form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.pro-pp-container-page .ppc-contact-btn-primary {
    width: 50%;
    padding: 15px;
    background: #ffc107;
    color: #1b5e20;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-left: 25%;
}

.pro-pp-container-page .ppc-contact-btn-primary:hover {
    background: #ffb300;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.pro-pp-container-page .ppc-contact-sustainability-content p {
    color: #fff;
    line-height: 1.9;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.pro-pp-container-page .ppc-contact-sustainability-image {
    margin-top: 30px;
    text-align: center;
    transition: all 1s ease-out;
}

.pro-pp-container-page .ppc-contact-sustainability-image img {
    width: 100%;
    max-width: 373px;
    border-radius: 12px;
    margin: 0 auto;
    display: block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

@keyframes ppcupSlideInLeft {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes ppcupSlideInRight {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes ppcupSlideInUp {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.pro-pp-container-page .animate-slide-left,
.pro-pp-container-page .animate-slide-right,
.pro-pp-container-page .animate-left-to-right,
.pro-pp-container-page .animate-right-to-left,
.pro-pp-container-page .animate-slide-up {
    opacity: 0;
}

.ppc-product-container .animate-slide-left.animated-visible {
    animation: ppcupSlideInLeft 1s ease-out forwards;
}

.ppc-product-container .animate-slide-right.animated-visible {
    animation: ppcupSlideInRight 1s ease-out forwards;
}

.pro-pp-container-page .animate-slide-left.animated-visible {
    animation: ppcupSlideInLeft 1s ease-out forwards;
}

.pro-pp-container-page .animate-slide-right.animated-visible {
    animation: ppcupSlideInRight 1s ease-out forwards;
}

.pro-pp-container-page .animate-left-to-right.animated-visible {
    animation: ppcupSlideInLeft 1s ease-out forwards;
}

.pro-pp-container-page .animate-right-to-left.animated-visible {
    animation: ppcupSlideInRight 1s ease-out forwards;
}

.ppc-showcase-container .animate-right-to-left.animated-visible {
    animation: ppcupSlideInRight 1s ease-out forwards;
}

.ppc-showcase-container .animate-left-to-right.animated-visible {
    animation: ppcupSlideInLeft 1s ease-out forwards;
}

.ppc-categories-container .animate-slide-right.animated-visible {
    animation: ppcupSlideInRight 1s ease-out forwards;
}

.ppc-categories-container .animate-right-to-left.animated-visible {
    animation: ppcupSlideInRight 1s ease-out forwards;
}

.pro-pp-container-page .animate-slide-up.animated-visible {
    animation: ppcupSlideInUp 1s ease-out forwards;
}

.pro-pp-container-page .ppc-contact-sustainability-image.animate-slide-right.animated-visible {
    animation-delay: 0.2s;
}

.pro-pp-container-page .g-faq-section {
    padding: 20px 20px;
    background: #f9f9f9;
}

.pro-pp-container-page .g-faq-title {
    text-align: center;
    margin-bottom: 40px;
    color: #2e7d32;
}

.pro-pp-container-page .g-faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.pro-pp-container-page .g-faq-item {
    background: #fff;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.pro-pp-container-page .g-faq-question {
    width: 100%;
    padding: 20px;
    background: #fff;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #0f4b00;
}

.pro-pp-container-page .g-faq-toggle {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.pro-pp-container-page .g-faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.pro-pp-container-page .g-faq-item.active .g-faq-answer {
    padding: 20px;
    max-height: 500px;
}

.pro-pp-container-page .g-faq-item.active .g-faq-toggle {
    transform: rotate(45deg);
}

@media (max-width: 768px) {
    .pro-pp-container-page .ppc-best-section {
        background-attachment: scroll;
    }

    .pro-pp-container-page .ppc-best-title {
        font-size: 1.6rem;
        margin-bottom: 20px;
        text-align: left;
    }

    .pro-pp-container-page .ppc-best-list li {
        font-size: 0.95rem;
        gap: 12px;
    }

    .pro-pp-container-page .ppc-best-list li i {
        width: 30px;
        height: 30px;
        flex: 0 0 30px;
        font-size: 0.95rem;
    }

    .pro-pp-container-page .custom-logo-section .container {
        flex-direction: column;
        text-align: left;
    }

    .pro-pp-container-page .custom-logo-image-container {
        flex: 1;
        max-width: 100%;
    }

    .pro-pp-container-page .ppc-product-container,
    .pro-pp-container-page .ppc-categories-container,
    .pro-pp-container-page .ppc-showcase-container,
    .pro-pp-container-page .ppc-contact-green-layout {
        flex-direction: column;
        gap: 30px;
        text-align: left;
    }

    .pro-pp-container-page .ppc-showcase-container {
        margin: 0 auto;
    }

    .pro-pp-container-page .ppc-product-image,
    .pro-pp-container-page .ppc-categories-image,
    .pro-pp-container-page .ppc-showcase-image,
    .pro-pp-container-page .ppc-product-description,
    .pro-pp-container-page .ppc-categories-content,
    .pro-pp-container-page .ppc-showcase-content,
    .pro-pp-container-page .ppc-contact-form-section,
    .pro-pp-container-page .ppc-contact-content-section {
        max-width: 100%;
    }

    .pro-pp-container-page .ppc-product-variants-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-left: 0;
    }

    .pro-pp-container-page .ppc-contact-form-group {
        width: 100%;
    }

    .pro-pp-container-page .ppc-contact-btn-primary {
        width: 100%;
        margin-left: 0;
    }

    .pro-pp-container-page .ppc-contact-form-section h3 {
        margin-top: 0;
        font-size: 1.5rem;
    }

    .pro-pp-container-page .ppc-contact-content-section h3 {
        font-size: 1.5rem;
    }

    .pro-pp-container-page .ppc-premium-bullet li {
        font-size: 0.95rem;
        padding-left: 25px;
    }

    .pro-pp-container-page .ppc-premium-bullet li::before {
        width: 18px;
        height: 18px;
    }

    .pro-pp-container-page .ppc-premium-bullet li::after {
        left: 5px;
        top: 0px;
        font-size: 10px;
    }

    .pro-pp-container-page .g-faq-item {
        border-radius: 12px;
        border: 1px solid rgba(46, 125, 50, 0.18);
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    }

    .pro-pp-container-page .g-faq-question {
        padding: 16px 14px;
        align-items: flex-start;
        gap: 12px;
    }

    .pro-pp-container-page .g-faq-question span:first-child {
        font-size: 0.95rem;
        line-height: 1.35;
    }

    .pro-pp-container-page .g-faq-toggle {
        width: 36px;
        height: 36px;
        flex: 0 0 36px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 999px;
        background: var(--primary-color, #2e7d32);
        color: #fff;
        font-size: 1.25rem;
        font-weight: 700;
        line-height: 1;
        box-shadow: 0 10px 22px rgba(46, 125, 50, 0.22);
        transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
        margin-top: 2px;
    }

    .pro-pp-container-page .g-faq-question:focus-visible {
        outline: none;
        box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.18);
    }

    .pro-pp-container-page .g-faq-answer {
        padding: 0 14px;
    }

    .pro-pp-container-page .g-faq-item.active .g-faq-answer {
        padding: 0 14px 14px;
    }

    .pro-pp-container-page .g-faq-item.active .g-faq-toggle {
        background: #0f4b00;
        box-shadow: 0 10px 22px rgba(15, 75, 0, 0.22);
    }
}

@media (max-width: 992px) {
    .pro-pp-container-page .ppc-product-variants-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .pro-pp-container-page .pro-pp-container-banner {
        padding: 70px 16px;
    }

    .pro-pp-container-page .pro-pp-container-banner h1 {
        font-size: 1.5rem;
        line-height: 1.25;
    }

    .pro-pp-container-page .ppc-product-details,
    .pro-pp-container-page .ppc-product-variants-section,
    .pro-pp-container-page .ppc-categories-section,
    .pro-pp-container-page .ppc-showcase-section,
    .pro-pp-container-page .ppc-contact-gradient-section,
    .pro-pp-container-page .g-faq-section {
        padding-left: 16px;
        padding-right: 16px;
    }

    .pro-pp-container-page .ppc-image-wrapper {
        padding: 1px;
    }

    .pro-pp-container-page .ppc-product-description h2,
    .pro-pp-container-page .ppc-categories-title,
    .pro-pp-container-page .ppc-showcase-title {
        font-size: 1.6rem;
    }

    .pro-pp-container-page .ppc-product-variants-title {
        font-size: 1.8rem;
        margin-bottom: 24px;
    }

    .pro-pp-container-page .ppc-product-variants-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .pro-pp-container-page .ppc-product-variant-label {
        font-size: 0.9rem;
        min-height: 44px;
    }

    .pro-pp-container-page .ppc-contact-form-container {
        padding: 18px;
    }

    .pro-pp-container-page .ppc-contact-form-group input,
    .pro-pp-container-page .ppc-contact-form-group textarea {
        padding: 12px;
    }
}

@media (min-width: 992px) {
    .pro-pp-container-page .ppc-image-wrapper img {
        max-width: 100%;
    }
}

/* Example changes */
.pro-pp-container-page .ppc-product-variant-image-container {
    height: 330px;
    /* Example reduction */
    padding: 10px;
}

.pro-pp-container-page .ppc-product-variant-image-container img {
    max-height: 100%;
}

.pro-pp-container-page .ppc-product-variant-label {
    min-height: 40px;
    padding: 8px 5px;
}

/* Mobile reordering */
@media (max-width: 768px) {

    .pro-pp-container-page .ppc-product-container {
        flex-direction: column;
    }

    .pro-pp-container-page .ppc-product-image {
        max-width: 100%;
        display: flex;
        justify-content: center;
    }

    .pro-pp-container-page .ppc-showcase-container {
        flex-direction: column-reverse;
    }
}

/* ------------------------------------------------------------
   Raffia string adaptations reusing PP container layout
------------------------------------------------------------- */
.pro-pp-container-page .raffia-hero {
    background: #f8f9fa;
    padding-bottom: 40px;
}

/* .pro-pp-container-page .raffia-hero .ppc-image-wrapper {
    background: linear-gradient(135deg, #f1fff3, #e1f7ea);
    border: 1px solid #d8f0df;
} */

.pro-pp-container-page .raffia-hero .ppc-product-description h2 {
    font-size: 1.8rem;
}

.pro-pp-container-page .raffia-variants .ppc-product-variant-image-container {
    background: #f2fef5;
    height: 200px;
    border-bottom: 1px solid #e0efe4;
}

.pro-pp-container-page .raffia-variants .raffia-variant-icon {
    font-size: 2.4rem;
    color: #2e7d32;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(46, 125, 50, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.pro-pp-container-page .raffia-variants .ppc-product-variant-label {
    text-transform: none;
}

.pro-pp-container-page .raffia-applications-section {
    padding: 60px 20px;
    background: #ffffff;
}

.pro-pp-container-page .raffia-applications-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.pro-pp-container-page .raffia-applications-container h2 {
    font-size: 1.9rem;
    color: #2e7d32;
    margin-bottom: 16px;
}

.pro-pp-container-page .raffia-applications-container p {
    max-width: 840px;
    margin: 0 auto 40px;
    color: #555;
    line-height: 1.7;
}

.pro-pp-container-page .raffia-applications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.pro-pp-container-page .raffia-app-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px 26px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(46, 125, 50, 0.08);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pro-pp-container-page .raffia-app-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.pro-pp-container-page .raffia-app-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #e8f5e9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1b5e20;
    font-size: 1.5rem;
    margin-bottom: 18px;
}

.pro-pp-container-page .raffia-app-card h3 {
    margin-bottom: 12px;
    color: #1b5e20;
    font-size: 1.2rem;
}

.pro-pp-container-page .raffia-app-card p {
    margin: 0;
    color: #546e7a;
    line-height: 1.6;
}

.pro-pp-container-page .custom-logo-section {
    background: #f8f9fa;
}

.pro-pp-container-page .custom-logo-image-container img {
    object-fit: cover;
}

.pro-pp-container-page .raffia-hero .ppc-premium-bullet li::before,
.pro-pp-container-page .raffia-hero .ppc-premium-bullet li::after {
    box-shadow: none;
}

.pro-pp-container-page .raffia-hero .ppc-premium-bullet li:hover {
    color: #1b5e20;
}

.pro-pp-container-page .ppc-contact-content-section p a {
    color: #ffe082;
    text-decoration: underline;
}