/* Frontend Styles - Image Text Section */
.its-section {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 60px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.its-section.its-image-left {
    flex-direction: row;
}

.its-section.its-image-right {
    flex-direction: row-reverse;
}

.its-image-wrapper {
    flex: 1;
    max-width: 50%;
}

.its-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.its-image-placeholder {
    width: 100%;
    padding-bottom: 66.67%;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    border-radius: 8px;
}

.its-content-wrapper {
    flex: 1;
    max-width: 50%;
    padding: 20px 0;
}

.its-number {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 56px;
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px var(--its-number-color, #5BA4A4);
}

.its-title {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 0 0 25px 0;
    line-height: 1.3;
}

.its-text {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    font-size: 17px;
    line-height: 1.8;
    margin: 0;
}

.its-text p {
    margin: 0 0 15px 0;
}

.its-text p:last-child {
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .its-section {
        gap: 40px;
        padding: 40px 20px;
    }
    
    .its-number {
        font-size: 48px;
        -webkit-text-stroke: 1px var(--its-number-color, #5BA4A4);
    }
    
    .its-title {
        font-size: 24px;
        letter-spacing: 2px;
    }
    
    .its-text {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .its-section,
    .its-section.its-image-left,
    .its-section.its-image-right {
        flex-direction: column;
        gap: 30px;
        padding: 30px 20px;
    }
    
    .its-image-wrapper,
    .its-content-wrapper {
        max-width: 100%;
        width: 100%;
    }
    
    .its-number {
        font-size: 42px;
        margin-bottom: 15px;
        -webkit-text-stroke: 1px var(--its-number-color, #5BA4A4);
    }
    
    .its-title {
        font-size: 20px;
        letter-spacing: 1.5px;
        margin-bottom: 20px;
    }
    
    .its-text {
        font-size: 15px;
        line-height: 1.7;
    }
}

/* Animation on scroll (optional - requires JS) */
.its-section {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Alternating sections helper - add background if needed */
/* .its-section:nth-child(even) { background: #f9f9f9; } */
