* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --success-color: #27ae60;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --gold: #f39c12;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --purple: #8e44ad;
    --orange: #e67e22;
    --whatsapp-green: #25D366;
    --email-blue: #4285F4;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-bg);
}

.breadcrumb {
    background-color: #e9ecef;
    padding: 12px 20px;
    font-size: 14px;
    white-space: nowrap;
    overflow-x: auto;
}

.breadcrumb a {
    color: var(--secondary-color);
    text-decoration: none;
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 20px;
}

.inner_page {
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    overflow: hidden;
    margin-bottom: 30px;
}

.inner_page_width {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 20px;
}

@media (min-width: 992px) {
    .inner_page_width {
        grid-template-columns: 1fr 350px;
        padding: 30px;
    }
}

.about_header {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, var(--secondary-color), #2980b9);
    color: white;
    margin-bottom: 30px;
}

.about_header h1 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    word-wrap: break-word;
}

.about_header p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
}

.impact_section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 30px 0;
}

@media (min-width: 768px) {
    .impact_section {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
}

.impact_card {
    background: var(--white);
    border-radius: 10px;
    padding: 20px 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    min-height: 130px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.impact_card:hover {
    transform: translateY(-5px);
}

.impact_number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 8px;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .impact_number {
        font-size: 2.5rem;
    }
}

.impact_label {
    font-size: 1rem;
    color: var(--primary-color);
    line-height: 1.3;
}

.values_section {
    margin: 40px 0;
}

.section_title {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    padding: 0 10px;
}

.section_title h2 {
    display: inline-block;
    background: var(--white);
    padding: 0 20px;
    position: relative;
    z-index: 1;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin: 0 auto;
    word-wrap: break-word;
}

.section_title::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #ddd;
    z-index: 0;
}

.values_grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 768px) {
    .values_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

.value_card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: 10px;
    padding: 25px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

@media (min-width: 576px) {
    .value_card {
        flex-direction: row;
    }
}

.value_card:hover {
    transform: translateY(-5px);
}

.value_icon {
    font-size: 2.2rem;
    color: var(--secondary-color);
    margin-right: 0;
    margin-bottom: 15px;
    text-align: center;
    min-width: 50px;
}

@media (min-width: 576px) {
    .value_icon {
        margin-right: 20px;
        margin-bottom: 0;
    }
}

.value_content {
    flex: 1;
}

.value_content h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--primary-color);
    word-wrap: break-word;
}

.value_content p {
    line-height: 1.5;
}

.mission_section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 30px;
    border-radius: 10px;
    margin: 40px 0;
    border-left: 5px solid var(--secondary-color);
}

.mission_section h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.mission_section p {
    margin-bottom: 15px;
    font-size: 1rem;
    line-height: 1.6;
}

.features_section {
    margin: 40px 0;
}

.features_grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
}

@media (min-width: 576px) {
    .features_grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .features_grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

.feature_card {
    background: var(--white);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.feature_icon {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.feature_card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary-color);
    word-wrap: break-word;
}

.feature_card p {
    font-size: 0.95rem;
    line-height: 1.4;
}

.cta_section {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, var(--purple), #9b59b6);
    color: white;
    border-radius: 10px;
    margin: 40px 0;
}

.cta_section h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    word-wrap: break-word;
}

.cta_section p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 25px;
    line-height: 1.5;
}

.button {
    display: inline-block;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    font-size: 1rem;
    cursor: pointer;
}

.white_button {
    background: white;
    color: var(--purple);
}

.white_button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,255,255,0.3);
}

.orange_button {
    background: linear-gradient(180deg,#ff6d1b,#ff6d1b);
    border: 1px solid #df5609;
    color: white;
    box-shadow: 0 0 0 4px rgba(255,109,27,.15),0 1px 2px 0 rgba(41,16,8,.15),0 3px 7px 0 rgba(41,16,8,.08),inset 0 2px 2px 0 rgba(255,212,188,.5);
}

.orange_button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(230, 126, 34, 0.4);
}

.contact_form {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-top: 40px;
}

@media (min-width: 768px) {
    .contact_form {
        padding: 40px;
    }
}

.contact_form h2 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.form_group {
    margin-bottom: 18px;
}

.form_group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form_group input,
.form_group textarea,
.form_group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    box-sizing: border-box;
}

.form_group textarea {
    min-height: 120px;
    resize: vertical;
}

.contact_info {
    margin-top: 30px;
}

.contact_item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact_icon {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-right: 12px;
    width: 25px;
    text-align: center;
}

.contact_text {
    font-size: 1rem;
}

.contact_text a {
    color: var(--secondary-color);
    text-decoration: none;
    word-break: break-all;
}

.contact_text a:hover {
    text-decoration: underline;
}

/* Sidebar styles */
.inner_page_sidebar {
    background: #f8f9fa;
    padding: 5px;
    border-radius: 8px;
    height: fit-content;
    width: 100%;
}

@media (min-width: 992px) {
    .inner_page_sidebar {
        width: 350px;
    }
}

.widget {
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-bottom: 20px;
    overflow: hidden;
    width: 100%;
}

.widget_title {
    background: linear-gradient(135deg, var(--purple), #9b59b6);
    color: white;
    padding: 18px;
    text-align: center;
}

.widget_title h2 {
    font-size: 1.4rem;
    margin: 0;
}

.widget_content {
    padding: 18px;
}

.free_feature_item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef;
}

.free_feature_item:last-child {
    border-bottom: none;
}

.free_feature_item.all_features {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 18px;
    border-radius: 8px;
    margin-top: 15px;
    border: 2px solid var(--success-color);
}

.free_feature_title {
    flex: 1;
    min-width: 0;
}

.free_feature_title b {
    color: var(--primary-color);
    font-size: 14px;
    display: block;
    word-wrap: break-word;
}

.free_feature_title span {
    font-size: 12px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 4px;
}

.free_feature_title p {
    color: var(--accent-color);
    font-weight: bold;
    text-decoration: line-through;
    margin: 0;
    font-size: 12px;
}

.free_feature_price {
    margin-left: 10px;
}

.free_feature_price span {
    background: var(--success-color);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 12px;
    white-space: nowrap;
}

/* Testimonials Carousel Styles - IMPROVED */
.t-widget_testimonials_carousel {
    position: relative;
    overflow: hidden;
    height: 400px !important;
    border-radius: 10px;
}

@media (min-width: 768px) {
    .t-widget_testimonials_carousel {
        height: 450px;
    }

}

.t-testimonials_carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.t-testimonials_item_shadow {
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-bottom: 20px;
    min-width: 100%;
    padding: 0 5px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.t-testimonials_item {
    padding: 20px !important;
    position: relative !important;
}

.t-testimonials_item_rating {
    margin-bottom: 15px !important;
    text-align: center !important;
}

.rating_static {
    display: flex;
    gap: 4px;
    justify-content: center;
}

.rating {
    width: 18px !important; 
    height: 18px !important;
    background: #ddd;
    border-radius: 50%;
    position: relative;
}

.rating.active {
    background: var(--gold);
}

.rating.active::before {
    content: "★";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 10px;
}

.t-testimonials_item_content {
    margin-bottom: 15px !important;
    font-style: italic;
    line-height: 1.6 !important;
    font-size: 0.95rem;
    text-align: center;
    position: relative;
    padding: 0 10px !important;
}

.t-testimonials_item_content:before {
    content: "";
    font-size: 50px;
    color: var(--secondary-color);
    opacity: 0.2;
    position: absolute;
    top: -25px;
    left: 0;
    line-height: 1;
}

.t-testimonials_item_info {
    border-top: 1px solid #e9ecef;
    padding-top: 15px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.username {
    margin-bottom: 5px;
}

.username span {
    font-weight: bold;
    color: var(--primary-color);
    font-size: 15px;
}

.username p {
    color: #666;
    font-size: 13px;
    margin: 0;
}

.review_type span {
    color: var(--secondary-color);
    font-size: 13px;
}

/* Carousel Navigation - IMPROVED */
.carousel_nav {
    display: flex;
    justify-content: center;
    margin-top: 15px;
    gap: 8px;
}

.carousel_dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel_dot.active {
    background-color: var(--secondary-color);
    transform: scale(1.2);
}

.carousel_arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.carousel_arrow:hover {
    background: white;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.carousel_arrow.left {
    left: 10px;
}

.carousel_arrow.right {
    right: 10px;
}

.carousel_arrow i {
    color: var(--primary-color);
    font-size: 14px;
}

/* New Pricing Table Styles */
.pricing_table {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0;
}

.pricing_table tr {
    border-bottom: 1px solid #eee;
}

.pricing_table tr:last-child {
    border-bottom: none;
}

.pricing_table td {
    padding: 10px 5px;
    font-size: 14px;
}

.pricing_table td:first-child {
    text-align: left;
    color: var(--primary-color);
}

.pricing_table td:last-child {
    text-align: right;
    font-weight: bold;
    color: var(--secondary-color);
}

.pricing_title {
    text-align: center;
    margin: 15px 0 10px;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 16px;
}

/* New Services List Styles */
.services_list {
    list-style: none;
    margin: 15px 0;
}

.services_list li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}

.services_list li:last-child {
    border-bottom: none;
}

.services_list li:before {
    content: "✓";
    color: var(--success-color);
    margin-right: 10px;
    font-weight: bold;
}

.services_list_title {
    text-align: center;
    margin: 15px 0 10px;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 16px;
}

/* Text content improvements */
.inner_page_content p {
    line-height: 1.6;
    margin-bottom: 20px;
    word-wrap: break-word;
}

/* Animation for cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.impact_card,
.value_card,
.feature_card {
    animation: fadeInUp 0.6s ease-out;
}

.impact_card:nth-child(2),
.value_card:nth-child(2),
.feature_card:nth-child(2) {
    animation-delay: 0.2s;
}

.impact_card:nth-child(3),
.value_card:nth-child(3),
.feature_card:nth-child(3) {
    animation-delay: 0.4s;
}

.impact_card:nth-child(4),
.value_card:nth-child(4),
.feature_card:nth-child(4) {
    animation-delay: 0.6s;
}

/* Additional responsive improvements */
@media (max-width: 480px) {
    .container {
        padding: 10px;
    }
    
    .about_header {
        padding: 30px 15px;
    }
    
    .about_header h1 {
        font-size: 1.8rem;
    }
    
    .mission_section {
        padding: 20px;
    }
    
    .contact_form {
        padding: 20px;
    }
    
    .impact_number {
        font-size: 1.8rem;
    }
    
    .section_title h2 {
        font-size: 1.6rem;
    }
    
    .cta_section {
        padding: 30px 15px;
    }
    
    .cta_section h2 {
        font-size: 1.6rem;
    }
    
    .button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .carousel_arrow {
        width: 30px;
        height: 30px;
    }
    
    .carousel_arrow.left {
        left: 5px;
    }
    
    .carousel_arrow.right {
        right: 5px;
    }
}

/* Prevent text overflow */
.text-overflow-prevention {
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
}
.contact-button {
    display: block;
    text-decoration: none;
    width: 220px;
    border-radius: 6px;
    padding: 15px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.contact_button_content {
    display: flex;
    align-items: center;
    gap: 15px;
}
.contact_button_text {
    display: flex;
    flex-direction: column;
}
.contact_button_text strong {
    font-size: 16px;
    margin-bottom: 3px;
}
.whatsapp-contact-button {
    background-color: var(--whatsapp-green);
    color: white;
}
.whatsapp-contact-button:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}
.email-contact-button {
    background-color: var(--email-blue);
    color: white;
}
.email-contact-button:hover {
    background-color: #3367D6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(66, 133, 244, 0.3);
}
.contact-button i {
    font-size: 24px;
}