.sector-icon {
        height: 80px;
        width: 80px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        border-radius: 50%;
        font-size: 36px;
        color: white;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .sector-card {
        border-radius: 10px;
        overflow: hidden;
        transition: all 0.3s ease;
        margin-bottom: 30px;
        height: 100%;
    }

    .sector-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

    .sector-header {
        padding: 20px;
        color: white;
    }

    .sector-body {
        padding: 30px;
    }

    .section-heading {
        position: relative;
        padding-bottom: 15px;
        margin-bottom: 30px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .section-heading:after {
        content: '';
        position: static;
        width: 70px;
        height: 3px;
        background-color: #28a745;
        margin-top: 10px;
        align-self: center;
    }

    @media (min-width: 992px) {
        .sector-header-text .section-heading {
            align-items: flex-start;
        }
        .sector-header-text .section-heading:after {
            align-self: flex-start;
            margin-left: 0;
        }
    }

    .list-custom {
        list-style: none;
        padding-left: 20px;
        margin: 0;
    }

    .list-custom li {
        position: relative;
        padding-left: 25px;
        margin-bottom: 15px;
        line-height: 1.6;
        color: #444;
    }

    .list-custom li:before {
        content: '';
        position: absolute;
        left: 0;
        top: 8px;
        width: 12px;
        height: 12px;
        background-color: var(--socopravec-green);
        border-radius: 50%;
    }

    .list-custom.yellow li:before {
        background-color: var(--socopravec-yellow);
    }

    .list-custom.red li:before {
        background-color: var(--socopravec-red);
    }

    .sector-image {
        width: 100%;
        height: 400px;
        object-fit: cover;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }

    .sector-container {
        display: flex;
        align-items: center;
        margin-bottom: 30px;
        background-color: #fff;
        border-radius: 10px;
        transition: all 0.3s ease;
    }

    .sector-container:hover {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .sector-container .list-custom li {
        margin-bottom: 1rem;
        line-height: 1.6;
    }

    .sector-container .col-md-6 {
        padding: 20px;
    }

    .sector-container .section-heading {
        color: var(--socopravec-green);
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .sector-container .lead {
        color: #666;
        font-size: 1.1rem;
        max-width: 800px;
        margin: 0 auto;
        margin-bottom: 2rem;
    }

    .sector-text {
        flex: 1;
        padding: 30px;
    }

    .sector-image-container {
        flex: 1;
        padding: 15px;
    }

    .sector-text-side {
        flex: 1;
        padding-right: 30px;
    }

    .sector-image-side {
        flex: 1;
        padding-left: 30px;
    }

    .sector-main-image {
        width: 100%;
        height: 400px;
        object-fit: cover;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }

    @media (max-width: 991.98px) {
        .sector-image {
            height: 300px;
            margin-bottom: 20px;
        }
        
        .sector-container {
            flex-direction: column;
        }
        
        .order-mobile-1 {
            order: 1;
        }
        
        .order-mobile-2 {
            order: 2;
        }
        
        .sector-body {
            padding: 20px;
        }
        
        .sector-text {
            padding: 20px 0;
        }

        .sector-container.flex-row {
            flex-direction: column;
        }
        
        .sector-text-side {
            padding-right: 0;
            margin-bottom: 20px;
        }
        
        .sector-image-side {
            padding-left: 0;
        }
        
        .sector-main-image {
            height: 300px;
        }
    }

    @media (max-width: 767.98px) {
        .sector-image {
            height: 180px;
        }
        
        .sector-card {
            margin-bottom: 20px;
        }
        
        .sector-body {
            padding: 15px;
        }
        
        .section-heading {
            font-size: 24px;
            margin-bottom: 20px;
        }
        
        .card {
            margin-bottom: 1rem;
        }

        .sector-container {
            padding: 15px !important;
        }
        
        .sector-container .col-md-6 {
            padding: 10px;
        }
        
        
        .list-custom li {
            font-size: 0.95rem;
        }
    }

    .card {
        border: none;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
    }

    .card:hover {
        transform: translateY(-5px);
    }

    .card-title {
        color: var(--socopravec-green);
        font-weight: 600;
        margin-bottom: 1rem;
    }

    .card-text {
        color: #666;
        line-height: 1.5;
    }

    .intro-text-box {
        position: relative;
        border-left: 4px solid var(--socopravec-green);
    }

    .intro-paragraph {
        font-size: 1.1rem;
        font-style: italic;
        line-height: 1.8;
        color: #555;
    }

    .quote-mark-left, .quote-mark-right {
        font-size: 2rem;
        color: var(--socopravec-green);
        opacity: 0.3;
        position: absolute;
    }

    .quote-mark-left {
        top: 0;
        left: 10px;
    }

    .quote-mark-right {
        bottom: 0;
        right: 10px;
    }

    .intro-container {
        position: relative;
        border-radius: 15px;
    }

    .intro-card {
        position: relative;
        padding: 25px;
        border-radius: 10px;
        background: #f8f9fa;
        transition: transform 0.3s ease;
    }

    .intro-card:hover {
        transform: translateY(-5px);
    }

    .intro-icon {
        width: 60px;
        height: 60px;
        background: var(--socopravec-green);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
    }

    .intro-icon i {
        font-size: 24px;
        color: white;
    }

    .divider {
        width: 80px;
        height: 3px;
        background: var(--socopravec-green);
        margin: 20px auto;
    }

    .badge.bg-socopravec-green {
        background-color: var(--socopravec-green);
        color: white;
        font-size: 0.9rem;
        font-weight: 500;
    }

    .intro-highlight {
        border-left: 4px solid var(--socopravec-green);
        font-size: 1.1rem;
    }