
    * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }
    
    body {
        font-family: 'Arial', sans-serif;
        line-height: 1.6;
        color: #333;
    }
    
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    .why-choose-section {
        padding: 60px 0;
        background-color: white;
    }
    
    .section-content {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        margin-top: -120px;
    }
    
    .image-column {
        flex: 1;
        min-width: 600px;
        position: relative;
        padding: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-left: -120px;
    }
    
    /* Main circular image container */
    .main-image-wrapper {
        position: relative;
        width: 469px;
        height: 469px;
        border-radius: 60%;
        overflow: hidden;
        box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        border: 6px solid white;
    }
    
    .main-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
    
    /* Small circular image container */
    .small-image-wrapper {
        position: absolute;
        width: 224px;
        height: 224px;
        border-radius: 50%;
        overflow: hidden;
        border: 6px solid white;
        box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        right: 10px;
        bottom: 10px;
        z-index: 2;
    }
    
    .small-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
    
    .content-column {
        flex: 1;
        min-width: 300px;
        padding: 30px;
    }
    
    .section-subtitle {
        display: flex;
        align-items: center;
        font-size: 14px;
        font-weight: 650;
        text-transform: uppercase;
        letter-spacing: 3px;
        color: #FF6D00;
        margin-bottom: 20px;
    }
    
    .logo-icon {
        width: 35px;
        height: auto;
        margin-right: 12px;
    }
    
    .section-title {
        font-size: 38px;
        margin-bottom: 25px;
        color: #333;
    }
    
    .section-description {
        margin-bottom: 35px;
        font-size: 18px;
        line-height: 1.7;
    }
    
    .feature-list {
        list-style: none;
        margin-bottom: 50px;
    }
    
    .feature-item {
        display: flex;
        align-items: center;
        margin-bottom: 20px;
    }
    
    .feature-icon {
        margin-right: 18px;
        flex-shrink: 0;
    }
    
    .feature-item span {
        font-size: 18px;
    }
    
    .counters {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    
    .counter-item {
        text-align: center;
        padding: 25px;
        min-width: 140px;
        position: relative;
        border-right: 1px solid #eee;
    }
    
    .counter-item:last-child {
        border-right: none;
    }
    
    .counter-number {
        font-size: 38px;
        font-weight: bold;
        color: #FF6D00;
        margin-bottom: 8px;
    }
    
    .counter-title {
        font-size: 16px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    /* Tablet Responsive Styles */
    @media (max-width: 992px) {
        .image-column {
            min-width: 500px;
        }
        
        .main-image-wrapper {
            width: 450px;
            height: 450px;
        }
        
        .small-image-wrapper {
            width: 220px;
            height: 220px;
        }
    }
    
    /* Mobile Responsive Styles */
    @media (max-width: 768px) {
        .why-choose-section {
            padding: 40px 0;
        }
        
        .section-content {
            flex-direction: column;
            margin-top: 0;
        }
        
        .image-column {
            order: 2;
            margin-bottom: 30px;
            min-width: 100%;
            margin-left: 0;
        }
        
        .content-column {
            order: 1;
            padding: 20px;
        }
        
        .main-image-wrapper {
            width: 320px;
            height: 320px;
        }
        
        .small-image-wrapper {
            width: 160px;
            height: 160px;
            right: 20px;
            bottom: 20px;
        }
        
        .section-title {
            font-size: 32px;
        }
        
        .counters {
            justify-content: space-around;
        }
        
        .counter-item {
            min-width: 100px;
            padding: 15px 10px;
        }
    }
    
    @media (max-width: 480px) {
        .why-choose-section {
            padding: 30px 0;
        }
        
        .section-title {
            font-size: 28px;
        }
        
        .main-image-wrapper {
            width: 280px;
            height: 280px;
        }
        
        .small-image-wrapper {
            width: 140px;
            height: 140px;
            right: 15px;
            bottom: 15px;
        }
        
        .counter-item {
            padding: 15px 5px;
            min-width: 90px;
            border-bottom: 1px solid #eee;
            border-right: none;
        }
        
        .counter-item:last-child {
            border-bottom: none;
        }
        
        .counter-number {
            font-size: 30px;
        }
        
        .feature-item span {
            font-size: 16px;
        }
        
        .section-description {
            font-size: 16px;
        }
    }
    
    @media (max-width: 380px) {
        .main-image-wrapper {
            width: 250px;
            height: 250px;
        }
        
        .small-image-wrapper {
            width: 120px;
            height: 120px;
            right: 10px;
            bottom: 10px;
        }
        
        .feature-icon svg {
            width: 24px;
            height: 24px;
        }
        
        .counter-item {
            min-width: 80px;
            padding: 10px 5px;
        }
        
        .counter-number {
            font-size: 24px;
        }
        
        .counter-title {
            font-size: 14px;
        }
    }
