body.elementor-page
{
	padding:0px !important;
}
#imei-serial-error {
    margin-top: -25px;
}

/* CSS from plugin/icloud-activation-unlock.html */
    /* Reset and base styles with prefixed classes to avoid conflicts */
    .ic-container * {
        box-sizing: border-box;
        font-family: 'Roboto', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    
    .ic-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
        color: #2C2C2C; /* Text color from scheme */
        line-height: 1.6;
    }
    
    /* Main section */
    .ic-main {
        text-align: center;
        padding: 40px 0;
        margin-bottom: 40px;
    }
    
    .ic-main-icon {
        width: 120px; /* Increased size for better visibility */
        height: 120px; 
        margin: 0 auto 20px; 
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .ic-main-icon img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain; /* Ensures the whole image is visible, scaled down if needed */
    }
    
    .ic-main-title {
        font-size: 28px;
        font-weight: 700;
        margin-bottom: 10px;
        color: #272727; /* Primary color */
    }
    
    .ic-main-subtitle {
        font-size: 22px;
        margin-bottom: 20px;
        color: #60666C; /* Secondary color */
    }
    
    .ic-main-text {
        max-width: 700px;
        margin: 0 auto 30px;
        font-size: 16px;
        color: #2C2C2C; /* Text color */
    }
    
    /* Form styles */
    .ic-form {
        max-width: 600px;
        margin: 0 auto 40px;
        padding: 30px;
        border-radius: 12px;
        background-color: #fff;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        position: relative; /* For positioning messages if needed */
    }
    
    .ic-form-messages {
        padding: 12px 15px;
        margin-bottom: 20px;
        border-radius: 8px;
        font-size: 15px;
        text-align: center;
        display: none; /* Hidden by default */
        position: relative;
        overflow: hidden;
        font-weight: 500;
    }
    
    .ic-form-messages.ic-success {
        background-color: #eaf7fd; /* Light blue */
        color: #2370b1; /* Dark blue */
        border: 1px solid #c5e5f8;
    }
    
    .ic-form-messages.ic-error {
        background-color: #fff6f6; /* Light salmon */
        color: #e66465; /* Salmon */
        border: 1px solid #ffe0e0;
    }
    
    .ic-form-messages.ic-loading::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        height: 3px;
        width: 20%;
        background-color: #C34B4B;
        animation: loading-bar 1.5s infinite ease-in-out;
    }
    
    @keyframes loading-bar {
        0% { width: 0; left: 0; }
        50% { width: 70%; left: 15%; }
        100% { width: 0; left: 100%; }
    }
    
    .ic-form-group {
        margin-bottom: 25px;
        text-align: left;
    }
    
    .ic-form-label {
        display: block;
        margin-bottom: 8px;
        font-weight: 600;
        font-size: 15px;
        color: #272727; /* Primary color */
    }
    
    .ic-form-input {
        width: 100%;
        padding: 12px 15px;
        border: 1px solid #60666C; /* Secondary color */
        border-radius: 6px;
        font-size: 15px;
        transition: border-color 0.3s;
        color: #2C2C2C; /* Text input color */
    }
    
    .ic-form-input:focus {
        border-color: #4054B2; /* Color #5 */
        outline: none;
        box-shadow: 0 0 0 3px rgba(64, 84, 178, 0.2);
    }
    
    /* Error state for form input */
    .ic-form-input.ic-error {
        border-color: #e66465; /* Error border color */
        background-color: #fff6f6; /* Light error background */
    }
    
    .ic-form-input.ic-error:focus {
        box-shadow: 0 0 0 3px rgba(230, 100, 101, 0.2); /* Error focus state */
    }
    
    .ic-form-select {
        width: 100%;
        padding: 12px 15px;
        border: 1px solid #60666C; /* Secondary color */
        border-radius: 6px;
        font-size: 15px;
        background-color: #fff;
        cursor: pointer;
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg fill=\'%2360666C\' xmlns=\'http://www.w3.org/2000/svg\' viewBox=\'0 0 24 24\'%3E%3Cpath d=\'M7 10l5 5 5-5z\'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 10px center;
        background-size: 20px;
        color: #2C2C2C; /* Text input color */
    }
    
    .ic-form-checkbox-group {
        display: flex;
        align-items: center;
        margin-top: 5px;
    }
    
    .ic-form-checkbox {
        margin-right: 10px;
        cursor: pointer;
        width: 18px;
        height: 18px;
        accent-color: #4054B2; /* Color #5 for checkbox */
    }
    
    .ic-form-checkbox-label {
        font-size: 15px;
        cursor: pointer;
        color: #2C2C2C; /* Text color */
    }
    
    .ic-form-submit {
        display: block;
        width: 100%;
        max-width: 250px;
        margin: 30px auto 0;
        padding: 14px 30px;
        background: #C34B4B; /* Accent color */
        color: white;
        border: none;
        border-radius: 30px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: transform 0.3s, box-shadow 0.3s;
    }
    
    .ic-form-submit:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(195, 75, 75, 0.4);
    }
    
    /* Stats bar */
    .ic-stats {
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
        margin: 40px auto;
        padding: 25px;
        border-radius: 12px;
        background-color: #4054B2; /* Apple blue color theme */
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        color: #FFF;
    }
    
    .ic-stat {
        text-align: center;
        padding: 15px;
        min-width: 150px;
    }
    
    .ic-stat-number {
        display: block;
        font-size: 28px;
        font-weight: 700;
        margin-bottom: 5px;
        color: #FFF; /* White text on dark background */
    }
    
    .ic-stat-text {
        font-size: 14px;
        color: #FFF; /* White text */
    }
    
    /* Process section */
    .ic-process {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        margin: 60px 0;
    }
    
    .ic-process-step {
        flex: 1;
        min-width: 300px;
        margin: 15px;
        padding: 30px;
        border-radius: 12px;
        background-color: #fff;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }
    
    .ic-process-number {
        font-size: 20px;
        font-weight: 700;
        color: #4054B2; /* Apple blue */
        margin-bottom: 15px;
    }
    
    .ic-process-title {
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 15px;
        color: #272727; /* Primary color */
    }
    
    .ic-process-text {
        font-size: 15px;
        color: #2C2C2C; /* Text color */
        margin-bottom: 20px;
    }
    
    .ic-check-list {
        margin-top: 20px;
    }
    
    .ic-check-item {
        display: flex;
        align-items: center; /* Align icon with text */
        margin-bottom: 10px;
    }
    
    .ic-check-icon {
        margin-right: 10px;
        flex-shrink: 0;
        font-size: 18px; /* Adjust emoji size */
    }
    
    .ic-check-text {
        font-size: 14px;
        color: #2C2C2C; /* Text color */
    }
    
    /* Features section */
    .ic-features {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        margin-bottom: 60px; /* This will be margin-top if it\'s at the very bottom */
        margin-top: 60px; /* Add margin-top for spacing when at bottom */
        text-align: center;
    }
    
    .ic-feature-card {
        flex: 1;
        min-width: 300px;
        padding: 30px 20px;
        margin: 10px;
        border-radius: 10px;
        background-color: #FFF; /* White background */
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .ic-feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    }
    
    .ic-feature-icon {
        width: 80px;
        height: 80px;
        margin: 0 auto 20px;
        font-size: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .ic-feature-title {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 15px;
        color: #272727; /* Primary color from scheme */
    }
    
    .ic-feature-text {
        font-size: 14px;
        color: #60666C; /* Secondary color from scheme */
    }
    
    /* Testimonials */
    .ic-testimonials {
        margin: 60px 0;
    }
    
    .ic-testimonials-title {
        text-align: center;
        font-size: 26px;
        font-weight: 700;
        margin-bottom: 40px;
        color: #272727; /* Primary color */
    }
    
    .ic-testimonials-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
        gap: 30px;
    }
    
    .ic-testimonial {
        flex: 1;
        min-width: 280px;
        max-width: 500px;
        padding: 25px;
        border-radius: 12px;
        background-color: #fff;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        margin-bottom: 20px;
    }
    
    .ic-testimonial-text {
        font-size: 15px;
        font-style: italic;
        color: #2C2C2C; /* Text color */
        margin-bottom: 20px;
        line-height: 1.5;
    }
    
    .ic-testimonial-author {
        display: flex;
        align-items: center;
    }
    
    .ic-testimonial-avatar {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        overflow: hidden;
        margin-right: 15px;
        background-color: #4E5768; /* Fallback background if image fails */
    }
    
    .ic-testimonial-avatar-img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* Ensures image covers the area, crops if necessary */
        display: block;
    }
    
    .ic-testimonial-info {
        display: flex;
        flex-direction: column;
    }
    
    .ic-testimonial-name {
        font-weight: 600;
        color: #272727; /* Primary color */
        font-size: 16px;
    }
    
    .ic-testimonial-location {
        font-size: 14px;
        color: #60666C; /* Secondary color */
    }
    
    /* Responsive adjustments */
    @media (max-width: 992px) { /* Adjust breakpoint for tablets */
        .ic-process-step {
             /* Allow slightly less than 50% to fit padding/margins */
             flex-basis: calc(50% - 30px); 
             min-width: calc(50% - 30px);
        }
         .ic-testimonial {
             flex-basis: calc(50% - 30px); 
             min-width: calc(50% - 30px);
        }
    }
    
    @media (max-width: 768px) {
        .ic-container {
            padding: 15px; /* Reduce padding on smaller screens */
        }

        .ic-process,
        .ic-stats,
        .ic-testimonials-grid,
        .ic-features {
            flex-direction: column; /* Stack elements vertically */
            gap: 20px;
        }

        .ic-feature-card,
        .ic-process-step,
        .ic-testimonial {
            min-width: 100%; /* Full width when stacked */
            margin-left: 0;
            margin-right: 0;
        }

        .ic-stats {
             padding: 20px 15px; /* Adjust padding */
        }

        .ic-stat {
             min-width: auto; /* Allow stats to take natural width when stacked */
             padding: 10px 0; /* Adjust padding */
        }
        
        .ic-main-title {
            font-size: 24px; /* Slightly smaller title */
        }

        .ic-main-subtitle {
            font-size: 18px;
        }

        .ic-form {
            padding: 20px; /* Reduce form padding */
        }

        .ic-testimonials-title {
             font-size: 22px;
        }

        .ic-process-step {
             padding: 25px;
        }
    }

    @media (max-width: 480px) { /* Further adjustments for small phones */
        .ic-main-text {
            font-size: 15px;
        }
        .ic-form-submit {
            max-width: 100%; /* Button full width */
        }
    }

/* CSS from plugin/imei-blacklist-removal.html */
    /* Reset and base styles with prefixed classes to avoid conflicts */
    .br-container * {
        box-sizing: border-box;
        font-family: 'Roboto', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    
    .br-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
        color: #2C2C2C; /* Text color from scheme */
        line-height: 1.6;
    }
    
    /* Features section */
    .br-features {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        margin-bottom: 60px; /* This will be margin-top if it\'s at the very bottom */
        margin-top: 60px; /* Add margin-top for spacing when at bottom */
        text-align: center;
    }
    
    .br-feature-card {
        flex: 1;
        min-width: 300px;
        padding: 30px 20px;
        margin: 10px;
        border-radius: 10px;
        background-color: #FFF; /* White background */
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .br-feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    }
    
    .br-feature-icon {
        width: 80px;
        height: 80px;
        margin: 0 auto 20px;
        font-size: 40px; /* Adjust emoji size if needed, may vary by emoji */
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .br-feature-title {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 15px;
        color: #272727; /* Primary color from scheme */
    }
    
    .br-feature-text {
        font-size: 14px;
        color: #60666C; /* Secondary color from scheme */
    }
    
    /* Main section */
    .br-main {
        text-align: center;
        padding: 40px 0;
        margin-bottom: 40px;
    }
    
    .br-main-icon {
        width: 120px; /* Increased size for better visibility */
        height: 120px; 
        margin: 0 auto 20px; 
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .br-main-icon img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain; /* Ensures the whole image is visible, scaled down if needed */
    }
    
    .br-main-title {
        font-size: 28px;
        font-weight: 700;
        margin-bottom: 10px;
        color: #272727; /* Primary color */
    }
    
    .br-main-subtitle {
        font-size: 22px;
        margin-bottom: 20px;
        color: #60666C; /* Secondary color */
    }
    
    .br-main-text {
        max-width: 700px;
        margin: 0 auto 30px;
        font-size: 16px;
        color: #2C2C2C; /* Text color */
    }
    
    /* Form styles */
    .br-form {
        max-width: 600px;
        margin: 0 auto 40px;
        padding: 30px;
        border-radius: 12px;
        background-color: #fff;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        position: relative; /* For positioning messages if needed */
    }
    
    .br-form-messages {
        padding: 12px 15px;
        margin-bottom: 20px;
        border-radius: 8px;
        font-size: 15px;
        text-align: center;
        display: none; /* Hidden by default */
        position: relative;
        overflow: hidden;
        font-weight: 500;
    }
    
    .br-form-messages.br-success {
        background-color: #eaf7fd; /* Light blue */
        color: #2370b1; /* Dark blue */
        border: 1px solid #c5e5f8;
    }
    
    .br-form-messages.br-error {
        background-color: #fff6f6; /* Light salmon */
        color: #e66465; /* Salmon */
        border: 1px solid #ffe0e0;
    }
    
    .br-form-messages.br-loading::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        height: 3px;
        width: 20%;
        background-color: #C34B4B;
        animation: loading-bar 1.5s infinite ease-in-out;
    }
    
    /* @keyframes loading-bar is already defined above by .ic- styles, assuming it's identical */
    
    .br-form-group {
        margin-bottom: 25px;
        text-align: left;
    }
    
    .br-form-label {
        display: block;
        margin-bottom: 8px;
        font-weight: 600;
        font-size: 15px;
        color: #272727; /* Primary color */
    }
    
    .br-form-input {
        width: 100%;
        padding: 12px 15px;
        border: 1px solid #60666C; /* Secondary color */
        border-radius: 6px;
        font-size: 15px;
        transition: border-color 0.3s;
        color: #2C2C2C; /* Text input color */
    }
    
    .br-form-input:focus {
        border-color: #4054B2; /* Color #5 */
        outline: none;
        box-shadow: 0 0 0 3px rgba(64, 84, 178, 0.2);
    }
    
    .br-form-select {
        width: 100%;
        padding: 12px 15px;
        border: 1px solid #60666C; /* Secondary color */
        border-radius: 6px;
        font-size: 15px;
        background-color: #fff;
        cursor: pointer;
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg fill=\'%2360666C\' xmlns=\'http://www.w3.org/2000/svg\' viewBox=\'0 0 24 24\'%3E%3Cpath d=\'M7 10l5 5 5-5z\'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 10px center;
        background-size: 20px;
        color: #2C2C2C; /* Text input color */
    }
    
    .br-form-checkbox-group {
        display: flex;
        align-items: center;
        margin-top: 5px;
    }
    
    .br-form-checkbox {
        margin-right: 10px;
        cursor: pointer;
        width: 18px;
        height: 18px;
        accent-color: #4054B2; /* Color #5 for checkbox */
    }
    
    .br-form-checkbox-label {
        font-size: 15px;
        cursor: pointer;
        color: #2C2C2C; /* Text color */
    }
    
    .br-form-submit {
        display: block;
        width: 100%;
        max-width: 250px;
        margin: 30px auto 0;
        padding: 14px 30px;
        background: #C34B4B; /* Accent color */
        color: white;
        border: none;
        border-radius: 30px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: transform 0.3s, box-shadow 0.3s;
    }
    
    .br-form-submit:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(195, 75, 75, 0.4);
    }
    
    /* Stats bar */
    .br-stats {
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
        margin: 40px auto;
        padding: 25px;
        border-radius: 12px;
        background-color: #4E5768; /* Color #3 */
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        color: #FFF;
    }
    
    .br-stat {
        text-align: center;
        padding: 15px;
        min-width: 150px;
    }
    
    .br-stat-number {
        display: block;
        font-size: 28px;
        font-weight: 700;
        margin-bottom: 5px;
        color: #FFF; /* White text on dark background */
    }
    
    .br-stat-text {
        font-size: 14px;
        color: #FFF; /* White text */
    }
    
    /* Process section */
    .br-process {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        margin: 60px 0;
    }
    
    .br-process-step {
        flex: 1;
        min-width: 300px;
        margin: 15px;
        padding: 30px;
        border-radius: 12px;
        background-color: #fff;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }
    
    .br-process-number {
        font-size: 20px;
        font-weight: 700;
        color: #4054B2; /* Color #5 */
        margin-bottom: 15px;
    }
    
    .br-process-title {
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 15px;
        color: #272727; /* Primary color */
    }
    
    .br-process-text {
        font-size: 15px;
        color: #2C2C2C; /* Text color */
        margin-bottom: 20px;
    }
    
    .br-check-item {
        display: flex;
        align-items: center; /* Align icon with text */
        margin-bottom: 10px;
    }
    
    .br-check-icon {
        margin-right: 10px;
        flex-shrink: 0;
        font-size: 18px; /* Adjust emoji size */
    }
    
    .br-check-text {
        font-size: 14px;
        color: #2C2C2C; /* Text color */
    }
    
    /* Testimonials */
    .br-testimonials {
        margin: 60px 0;
    }
    
    .br-testimonials-title {
        text-align: center;
        font-size: 26px;
        font-weight: 700;
        margin-bottom: 40px;
        color: #272727; /* Primary color */
    }
    
    .br-testimonials-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
        gap: 30px;
    }
    
    .br-testimonial {
        flex: 1;
        min-width: 280px;
        max-width: 500px;
        padding: 25px;
        border-radius: 12px;
        background-color: #fff;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        margin-bottom: 20px;
    }
    
    .br-testimonial-text {
        font-size: 15px;
        font-style: italic;
        color: #2C2C2C; /* Text color */
        margin-bottom: 20px;
        line-height: 1.5;
    }
    
    .br-testimonial-author {
        display: flex;
        align-items: center;
    }
    
    .br-testimonial-avatar {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        overflow: hidden;
        margin-right: 15px;
        background-color: #4E5768; /* Fallback background if image fails */
    }
    
    .br-testimonial-avatar-img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* Ensures image covers the area, crops if necessary */
        display: block;
    }
    
    .br-testimonial-info {
        display: flex;
        flex-direction: column;
    }
    
    .br-testimonial-name {
        font-weight: 600;
        color: #272727; /* Primary color */
        font-size: 16px;
    }
    
    .br-testimonial-location {
        font-size: 14px;
        color: #60666C; /* Secondary color */
    }
    
    /* Responsive adjustments */
    @media (max-width: 992px) { /* Adjust breakpoint for tablets */
        .br-process-step {
             /* Allow slightly less than 50% to fit padding/margins */
             flex-basis: calc(50% - 30px); 
             min-width: calc(50% - 30px);
        }
         .br-testimonial {
             flex-basis: calc(50% - 30px); 
             min-width: calc(50% - 30px);
        }
    }

    @media (max-width: 768px) {
        .br-container {
            padding: 15px; /* Reduce padding on smaller screens */
        }

        .br-features,
        .br-stats,
        .br-process,
        .br-testimonials-grid {
            flex-direction: column; /* Stack elements vertically */
            gap: 20px;
        }

        .br-feature-card,
        .br-process-step,
        .br-testimonial {
            min-width: 100%; /* Full width when stacked */
            margin-left: 0;
            margin-right: 0;
        }

        .br-stats {
             padding: 20px 15px; /* Adjust padding */
        }

        .br-stat {
             min-width: auto; /* Allow stats to take natural width when stacked */
             padding: 10px 0; /* Adjust padding */
        }
        
        .br-main-title {
            font-size: 24px; /* Slightly smaller title */
        }

        .br-main-subtitle {
            font-size: 18px;
        }

        .br-form {
            padding: 20px; /* Reduce form padding */
        }

        .br-testimonials-title {
             font-size: 22px;
        }

        .br-process-step {
             padding: 25px;
        }
    }

     @media (max-width: 480px) { /* Further adjustments for small phones */
         .br-main-text {
             font-size: 15px;
         }
         .br-form-submit {
             max-width: 100%; /* Button full width */
         }
     }

/* CSS from plugin/device-unlock.html */
    /* Reset and base styles with prefixed classes to avoid conflicts */
    .du-container * {
        box-sizing: border-box;
        font-family: 'Roboto', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    
    .du-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
        color: #2C2C2C; /* Text color from scheme */
        line-height: 1.6;
    }
    
    /* Features section */
    .du-features {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        margin-bottom: 60px; /* This will be margin-top if it\'s at the very bottom */
        margin-top: 60px; /* Add margin-top for spacing when at bottom */
        text-align: center;
    }
    
    .du-feature-card {
        flex: 1;
        min-width: 300px;
        padding: 30px 20px;
        margin: 10px;
        border-radius: 10px;
        background-color: #FFF; /* White background */
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .du-feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    }
    
    .du-feature-icon {
        width: 80px;
        height: 80px;
        margin: 0 auto 20px;
        /* color: #4054B2; */ /* Color might not apply consistently to all emojis */
        font-size: 40px; /* Adjust emoji size if needed, may vary by emoji */
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .du-feature-title {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 15px;
        color: #272727; /* Primary color from scheme */
    }
    
    .du-feature-text {
        font-size: 14px;
        color: #60666C; /* Secondary color from scheme */
    }
    
    /* Main section */
    .du-main {
        text-align: center;
        padding: 40px 0;
        margin-bottom: 40px;
    }
    
    .du-main-icon {
        width: 120px; /* Match ic-main-icon — shared hub shell */
        height: 120px;
        margin: 0 auto 20px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .du-main-icon img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain; /* Ensures the whole image is visible, scaled down if needed */
    }
    
    .du-main-title {
        font-size: 28px;
        font-weight: 700;
        margin-bottom: 10px;
        color: #272727; /* Primary color */
    }
    
    .du-main-subtitle {
        font-size: 22px;
        margin-bottom: 20px;
        color: #60666C; /* Secondary color */
    }
    
    .du-main-text {
        max-width: 700px;
        margin: 0 auto 30px;
        font-size: 16px;
        color: #2C2C2C; /* Text color */
    }
    
    /* Form styles */
    .du-form {
        max-width: 600px;
        margin: 0 auto 40px;
        padding: 30px;
        border-radius: 12px;
        background-color: #fff;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        position: relative; /* For positioning messages if needed */
    }
    
    .du-form-messages {
        padding: 12px 15px;
        margin-bottom: 20px;
        border-radius: 8px;
        font-size: 15px;
        text-align: center;
        display: none; /* Hidden by default */
        position: relative;
        overflow: hidden;
        font-weight: 500;
    }
    
    .du-form-messages.du-success {
        background-color: #eaf7fd; /* Light blue */
        color: #2370b1; /* Dark blue */
        border: 1px solid #c5e5f8;
    }
    
    .du-form-messages.du-error {
        background-color: #fff6f6; /* Light salmon */
        color: #e66465; /* Salmon */
        border: 1px solid #ffe0e0;
    }
    
    .du-form-messages.du-loading::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        height: 3px;
        width: 20%;
        background-color: #C34B4B;
        animation: loading-bar 1.5s infinite ease-in-out;
    }
    
    /* @keyframes loading-bar is already defined above by .ic- styles, assuming it's identical */
    
    .du-form-group {
        margin-bottom: 25px;
        text-align: left;
    }
    
    .du-form-label {
        display: block;
        margin-bottom: 8px;
        font-weight: 600;
        font-size: 15px;
        color: #272727; /* Primary color */
    }
    
    .du-form-input {
        width: 100%;
        padding: 14px 15px;
        border: 1px solid #dfe1e5;
        border-radius: 8px;
        font-size: 15px;
        transition: all 0.3s ease;
        color: #2C2C2C; /* Text input color */
        box-shadow: 0 1px 3px rgba(0,0,0,0.05) inset;
    }
    
    .du-form-input:focus {
        border-color: #4054B2; /* Color #5 */
        outline: none;
        box-shadow: 0 0 0 3px rgba(64, 84, 178, 0.15), 0 1px 3px rgba(0,0,0,0.05) inset;
        transform: translateY(-1px);
    }
    
    .du-form-select {
        width: 100%;
        padding: 14px 15px;
        border: 1px solid #dfe1e5;
        border-radius: 8px;
        font-size: 15px;
        background-color: #fff;
        cursor: pointer;
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg fill=\'%2360666C\' xmlns=\'http://www.w3.org/2000/svg\' viewBox=\'0 0 24 24\'%3E%3Cpath d=\'M7 10l5 5 5-5z\'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 10px center;
        background-size: 20px;
        color: #2C2C2C; /* Text input color */
        transition: all 0.3s ease;
        box-shadow: 0 1px 3px rgba(0,0,0,0.05) inset;
    }
    
    .du-form-select:focus {
        border-color: #4054B2;
        box-shadow: 0 0 0 3px rgba(64, 84, 178, 0.15), 0 1px 3px rgba(0,0,0,0.05) inset;
        transform: translateY(-1px);
    }
    
    .du-form-checkbox-group {
        display: flex;
        align-items: center;
        margin-top: 5px;
    }
    
    .du-form-checkbox {
        margin-right: 10px;
        cursor: pointer;
        width: 18px;
        height: 18px;
        accent-color: #4054B2; /* Color #5 for checkbox */
    }
    
    .du-form-checkbox-label {
        font-size: 15px;
        cursor: pointer;
        color: #2C2C2C; /* Text color */
    }
    
    .du-form-submit {
        display: block;
        width: 100%;
        max-width: 270px;
        margin: 30px auto 0;
        padding: 16px 30px;
        background: #C34B4B; /* Accent color */
        color: white;
        border: none;
        border-radius: 30px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 4px 10px rgba(195, 75, 75, 0.2);
    }
    
    .du-form-submit:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 15px rgba(195, 75, 75, 0.35);
    }
    
    .du-form-submit:active {
        transform: translateY(0);
        box-shadow: 0 2px 5px rgba(195, 75, 75, 0.2);
    }

    /* Trust badges */
    .du-trust-badges {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
        margin: 25px auto 10px;
        text-align: center;
    }
    
    .du-trust-badge {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 8px 12px;
        background-color: #f8f9fa;
        border-radius: 8px;
        font-size: 14px;
        color: #60666C;
        font-weight: 500;
    }
    
    .du-trust-badge-icon {
        font-size: 18px;
        color: #4054B2;
    }
    
    /* Stats bar */
    .du-stats {
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
        margin: 40px auto;
        padding: 25px;
        border-radius: 12px;
        background-color: #4E5768; /* Color #3 */
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        color: #FFF;
    }
    
    .du-stat {
        text-align: center;
        padding: 15px;
        min-width: 150px;
    }
    
    .du-stat-number {
        display: block;
        font-size: 28px;
        font-weight: 700;
        margin-bottom: 5px;
        color: #FFF; /* White text on dark background */
    }
    
    .du-stat-text {
        font-size: 14px;
        color: #FFF; /* White text */
    }
    
    /* Process section */
    .du-process {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        margin: 60px 0;
    }
    
    .du-process-step {
        flex: 1;
        min-width: 300px;
        margin: 15px;
        padding: 30px;
        border-radius: 12px;
        background-color: #fff;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }
    
    .du-process-number {
        font-size: 20px;
        font-weight: 700;
        color: #4054B2; /* Color #5 */
        margin-bottom: 15px;
    }
    
    .du-process-title {
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 15px;
        color: #272727; /* Primary color */
    }
    
    .du-process-text {
        font-size: 15px;
        color: #2C2C2C; /* Text color */
        margin-bottom: 20px;
    }
    
    .du-check-item {
        display: flex;
        align-items: center; /* Align icon with text */
        margin-bottom: 10px;
    }
    
    .du-check-icon {
        /* color: #75C32C; */ /* Color might not apply consistently to all emojis */
        margin-right: 10px;
        flex-shrink: 0;
        font-size: 18px; /* Adjust emoji size */
    }
    
    .du-check-text {
        font-size: 14px;
        color: #2C2C2C; /* Text color */
    }
    
    /* Testimonials */
    .du-testimonials {
        margin: 60px 0;
    }
    
    .du-testimonials-title {
        text-align: center;
        font-size: 26px;
        font-weight: 700;
        margin-bottom: 40px;
        color: #272727; /* Primary color */
    }
    
    .du-testimonials-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
        gap: 30px;
    }
    
    .du-testimonial {
        flex: 1;
        min-width: 280px;
        max-width: 500px;
        padding: 25px;
        border-radius: 12px;
        background-color: #fff;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        margin-bottom: 20px;
        border-left: 4px solid #4054B2;
        position: relative;
    }
    
    .du-testimonial:before {
        content: '"';
        position: absolute;
        top: 10px;
        left: 15px;
        font-size: 60px;
        color: #f0f1f5;
        font-family: serif;
        line-height: 1;
        z-index: 0;
    }

    .du-testimonial-text {
        position: relative;
        z-index: 1;
        font-size: 15px;
        font-style: italic;
        color: #2C2C2C; /* Text color */
        margin-bottom: 20px;
        line-height: 1.5;
    }
    
    .du-testimonial-author {
        display: flex;
        align-items: center;
    }
    
    .du-testimonial-avatar {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        overflow: hidden;
        margin-right: 15px;
        background-color: #4E5768; /* Fallback background if image fails */
    }
    
    .du-testimonial-avatar-img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* Ensures image covers the area, crops if necessary */
        display: block;
    }
    
    .du-testimonial-info {
        display: flex;
        flex-direction: column;
    }
    
    .du-testimonial-name {
        font-weight: 600;
        color: #272727; /* Primary color */
        font-size: 16px;
    }
    
    .du-testimonial-location {
        font-size: 14px;
        color: #60666C; /* Secondary color */
    }
    
    /* Responsive adjustments */
    @media (max-width: 992px) { /* Adjust breakpoint for tablets */
        .du-process-step {
             /* Allow slightly less than 50% to fit padding/margins */
             flex-basis: calc(50% - 30px); 
             min-width: calc(50% - 30px);
        }
         .du-testimonial {
             flex-basis: calc(50% - 30px); 
             min-width: calc(50% - 30px);
        }
    }

    @media (max-width: 768px) {
        .du-container {
            padding: 15px; /* Reduce padding on smaller screens */
        }

        .du-features,
        .du-stats,
        .du-process,
        .du-testimonials-grid {
            flex-direction: column; /* Stack elements vertically */
            gap: 20px;
        }

        .du-feature-card,
        .du-process-step,
        .du-testimonial {
            min-width: 100%; /* Full width when stacked */
            margin-left: 0;
            margin-right: 0;
        }

        .du-stats {
             padding: 20px 15px; /* Adjust padding */
        }

        .du-stat {
             min-width: auto; /* Allow stats to take natural width when stacked */
             padding: 10px 0; /* Adjust padding */
        }
        
        .du-main-title {
            font-size: 24px; /* Slightly smaller title */
        }

        .du-main-subtitle {
            font-size: 18px;
        }

        .du-form {
            padding: 20px; /* Reduce form padding */
        }

        .du-testimonials-title {
             font-size: 22px;
        }

        .du-process-step {
             padding: 25px;
        }
    }

     @media (max-width: 480px) { /* Further adjustments for small phones */
         .du-main-text {
             font-size: 15px;
         }
         .du-form-submit {
             max-width: 100%; /* Button full width */
         }
     }

     /* Guarantee section */
     .du-guarantee {
         background-color: #f8f9fa;
         border: 1px solid #e9ecef;
         border-radius: 10px;
         padding: 20px;
         margin: 25px auto;
         max-width: 600px;
         display: flex;
         align-items: center;
         gap: 15px;
     }
 
     .du-guarantee-icon {
         font-size: 40px;
         color: #4054B2;
         flex-shrink: 0;
     }
 
     .du-guarantee-content {
         flex: 1;
     }
 
     .du-guarantee-title {
         font-size: 18px;
         font-weight: 700;
         margin-bottom: 5px;
         color: #272727;
     }
 
     .du-guarantee-text {
         font-size: 14px;
         color: #60666C;
         margin-bottom: 0;
     }
 
     /* Benefits list */
     .du-benefits-list {
         margin: 30px auto;
         max-width: 700px;
     }
 
     .du-benefit-item {
         display: flex;
         align-items: flex-start;
         margin-bottom: 15px;
         padding: 15px;
         background-color: #fff;
         border-radius: 10px;
         box-shadow: 0 2px 8px rgba(0,0,0,0.04);
         transition: transform 0.2s;
     }
 
     .du-benefit-item:hover {
         transform: translateY(-2px);
         box-shadow: 0 4px 12px rgba(0,0,0,0.08);
     }
 
     .du-benefit-icon {
         flex-shrink: 0;
         font-size: 24px;
         margin-right: 15px;
         color: #C34B4B;
     }
 
     .du-benefit-content {
         flex: 1;
     }
 
     .du-benefit-title {
         font-weight: 600;
         margin-bottom: 5px;
         color: #272727;
     }
 
     .du-benefit-text {
         font-size: 14px;
         color: #60666C;
         margin: 0;
     }
 
     .du-benefit-emotion {
         font-style: italic;
         color: #4054B2;
         font-size: 13px;
         margin-top: 5px;
     }
