.elementor-145 .elementor-element.elementor-element-1a0725a{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-116499a */:root {
        --primary-color: #3d9943;
        --secondary-color: #6c757d;
        --dark-color: #212529;
        --light-color: #f8f9fa;
        --success-color: #28a745;
        --transition: all 0.3s ease;
    }
    body {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        line-height: 1.6;
        color: var(--dark-color);
        background-color: #fff;
        overflow-x: hidden;
    }
    
    .pb-container {
        width: 100%;
        max-width: 1300px;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    .pb-btn {
        display: inline-block;
        padding: 12px 25px;
        background-color: var(--primary-color);
        color: white;
        border: none;
        border-radius: 5px;
        font-size: 16px;
        font-weight: 500;
        cursor: pointer;
        transition: var(--transition);
        text-decoration: none;
    }

    .pb-btn:hover {
        background-color: #2d7a33;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(61, 153, 67, 0.3);
    }

    .pb-btn-outline {
        background-color: transparent;
        border: 2px solid var(--primary-color);
        color: var(--primary-color);
    }

    .pb-btn-outline:hover {
        background-color: var(--primary-color);
        color: white;
    }

    /* Hero Section */
    .pb-hero {
        padding: 150px 0 100px;
        background: linear-gradient(135deg, #f5f7ff 0%, #e8eeff 100%);
        position: relative;
        overflow: hidden;
    }

    .pb-hero::before {
        content: '';
        position: absolute;
        top: -100px;
        right: -100px;
        width: 500px;
        height: 500px;
        border-radius: 50%;
        background: linear-gradient(135deg, rgba(61, 153, 67, 0.1) 0%, rgba(61, 153, 67, 0.05) 100%);
        z-index: 0;
    }

    .pb-hero-content {
        display: flex;
        align-items: center;
        position: relative;
        z-index: 1;
    }

    .pb-hero-text {
        flex: 1;
        padding-right: 50px;
    }

    .pb-hero-image {
        flex: 1;
        text-align: center;
    }

    .pb-hero-image img {
        max-width: 100%;
        border-radius: 10px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }

    .pb-hero h1 {
        font-size: 48px;
        font-weight: 600 !important;
        line-height: 1.2;
        margin-bottom: 20px;
        color: var(--dark-color);
    }

    .pb-hero h1 span {
        color: var(--primary-color);
    }

    .pb-hero p {
        font-size: 20px;
        margin-bottom: 30px;
        color: var(--secondary-color);
    }

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

    /* Features Section */
    .pb-features {
        padding: 100px 0;
        background-color: white;
    }

    .pb-section-title {
        text-align: center;
        margin-bottom: 60px;
    }

    .pb-section-title h2 {
        font-size: 36px;
        margin-bottom: 15px;
        color: var(--dark-color);
        font-weight: 600 !important;
    }

    .pb-section-title p {
        font-size: 18px;
        color: var(--secondary-color);
        max-width: 700px;
        margin: 0 auto;
    }

    .pb-features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }

    .pb-feature-card {
        text-align: center;
        padding: 30px;
        border-radius: 10px;
        background-color: var(--light-color);
        transition: var(--transition);
    }

    .pb-feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

    .pb-feature-card i {
        font-size: 50px;
        color: var(--primary-color);
        margin-bottom: 20px;
    }

    .pb-feature-card h3 {
        font-size: 22px;
        margin-bottom: 15px;
        color: var(--dark-color);
        font-weight: 600 !important;
    }

    .pb-feature-card p {
        color: var(--secondary-color);
    }

    /* Gallery Layouts Section */
    .pb-gallery-layouts {
        padding: 100px 0;
        background-color: #f8f9fa;
    }

    .pb-layouts-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }

    .pb-layout-card {
        background-color: white;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: var(--transition);
    }

    .pb-layout-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

    .pb-layout-image {
        height: 200px;
        overflow: hidden;
        position: relative;
    }

    .pb-layout-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: var(--transition);
    }

    .pb-layout-card:hover .pb-layout-image img {
        transform: scale(1.05);
    }

    .pb-layout-badge {
        position: absolute;
        top: 15px;
        right: 15px;
        background-color: var(--primary-color);
        color: white;
        padding: 5px 10px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 600;
    }

    .pb-layout-content {
        padding: 25px;
    }

    .pb-layout-content h3 {
        font-size: 20px;
        margin-bottom: 10px;
        color: var(--dark-color);
        font-weight: 600 !important;
    }

    .pb-layout-content p {
        color: var(--secondary-color);
        margin-bottom: 15px;
    }

    .pb-layout-content .pb-btn {
        font-size: 14px;
        padding: 8px 15px;
    }

    /* Benefits Section */
    .pb-benefits {
        padding: 100px 0;
        background-color: white;
    }

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

    .pb-benefit-item {
        display: flex;
        align-items: flex-start;
    }

    .pb-benefit-icon {
        background-color: rgba(61, 153, 67, 0.1);
        color: var(--primary-color);
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 15px;
        flex-shrink: 0;
    }

    .pb-benefit-text h3 {
        font-size: 18px;
        margin-bottom: 5px;
        color: var(--dark-color);
        font-weight:600; 
    }

    .pb-benefit-text p {
        color: var(--secondary-color);
        font-size: 15px;
    }

    /* Pricing Section */
    .pb-pricing {
        padding: 100px 0;
        background-color: white;
    }

    .pb-pricing-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-top: 50px;
    }

    .pb-pricing-card {
        background-color: white;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: var(--transition);
        position: relative;
    }

    .pb-pricing-card.featured {
        transform: scale(1.05);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    .pb-pricing-card.featured::before {
        content: 'MOST POPULAR';
        position: absolute;
        top: 15px;
        right: -30px;
        background-color: var(--primary-color);
        color: white;
        padding: 5px 30px;
        font-size: 12px;
        font-weight: 600;
        transform: rotate(45deg);
    }

    .pb-pricing-header {
        background-color: var(--light-color);
        padding: 30px;
        text-align: center;
    }

    .pb-pricing-card.featured .pb-pricing-header {
        background-color: var(--primary-color);
        color: white;
    }

    .pb-pricing-title {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .pb-pricing-price {
        font-size: 40px;
        font-weight: 700;
        margin-bottom: 5px;
    }

    .pb-pricing-price span {
        font-size: 16px;
        font-weight: 400;
    }

    .pb-pricing-period {
        font-size: 14px;
        color: var(--secondary-color);
    }

    .pb-pricing-card.featured .pb-pricing-period {
        color: rgba(255, 255, 255, 0.8);
    }

    .pb-pricing-features {
        padding: 30px;
    }

    .pb-pricing-feature {
        display: flex;
        align-items: center;
        margin-bottom: 15px;
    }

    .pb-pricing-feature i {
        color: var(--success-color);
        margin-right: 10px;
    }

    .pb-pricing-card.featured .pb-btn {
        width: 100%;
        margin-top: 20px;
    }

    /* FAQ Section */
    .pb-faq {
        padding: 100px 0;
        background-color: #f8f9fa;
    }

    .pb-faq-container {
        max-width: 800px;
        margin: 0 auto;
    }

    .pb-faq-item {
        background-color: white;
        border-radius: 10px;
        margin-bottom: 15px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }

    .pb-faq-question {
        padding: 20px 25px;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-weight: 600;
        color: var(--dark-color);
        transition: var(--transition);
    }

    .pb-faq-question:hover {
        background-color: rgba(61, 153, 67, 0.05);
    }

    .pb-faq-question i {
        transition: var(--transition);
    }

    .pb-faq-item.active .pb-faq-question i {
        transform: rotate(180deg);
    }

    .pb-faq-answer {
        padding: 0 25px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
        color: var(--secondary-color);
    }

    .pb-faq-item.active .pb-faq-answer {
        padding: 0 25px 20px;
        max-height: 500px;
    }
    /* Responsive Styles */
    @media (max-width: 992px) {
        .pb-hero-content {
            flex-direction: column;
        }

        .pb-hero-text {
            padding-right: 0;
            margin-bottom: 50px;
            text-align: center;
        }

        .pb-hero h1 {
            font-size: 36px;
        }

        .pb-hero p {
            font-size: 18px;
        }

        .pb-hero-buttons {
            justify-content: center;
        }
    }

    @media (max-width: 768px) {
        nav ul {
            display: none;
        }

        .pb-mobile-menu-btn {
            display: block;
        }

        .pb-hero {
            padding: 120px 0 80px;
        }

        .pb-hero h1 {
            font-size: 30px;
        }

        .pb-hero p {
            font-size: 16px;
        }

        .pb-hero-buttons {
            flex-direction: column;
            width: 100%;
            max-width: 300px;
            margin: 0 auto;
        }

        .pb-section-title h2 {
            font-size: 28px;
        }

        .pb-pricing-card.featured {
            transform: none;
        }

        .pb-pricing-card.featured::before {
            right: -40px;
        }
    }

    @media (max-width: 576px) {
        .pb-hero h1 {
            font-size: 26px;
        }

        .pb-hero p {
            font-size: 15px;
        }

        .pb-layout-content h3 {
            font-size: 18px;
        }

        .pb-pricing-price {
            font-size: 32px;
        }
    }/* End custom CSS */