:root {
    --primary: #304b6c;
    --primary-dark: #243c59;
    --secondary: #b89455;
    --light-bg: #f5f6f8;
    --white: #ffffff;
    --text: #5f6975;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: var(--light-bg);
}

.intensity-section {
    padding: 80px 0;
    /*background: linear-gradient(
        135deg,
        #fafafa 0%,
        #f1f2f4 100%
    );*/
}

/* Header */

.section-header {
    max-width: 850px;
    margin-bottom: 45px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: 0.4px;
}

.section-tag i {
    font-size: 17px;
}

.section-header h1 {
    color: var(--primary);
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 18px;
}

.title-line {
    width: 65px;
    height: 3px;
    background: var(--secondary);
    border-radius: 20px;
    margin-bottom: 22px;
}

.section-header p {
    color: var(--text);
    font-size: 17px;
    line-height: 1.8;
    margin: 0;
}

/* Featured Card */

.featured-card {
    background:
        linear-gradient(
            135deg,
            #304b6c,
            #3b597c
        );
}

.featured-card h5,
.featured-card p {
    color: #ffffff;
}

.featured-card .service-icon {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.featured-card .card-number {
    color: rgba(255, 255, 255, 0.35);
}

.featured-card:hover .service-icon {
    background: var(--secondary);
    transform: rotate(-5deg);
}


/* Responsive */

@media (max-width: 991px) {

    .section-header h1 {
        font-size: 32px;
    }

    .service-card {
        min-height: 230px;
    }
}


@media (max-width: 767px) {

    .intensity-section {
        padding: 55px 0;
    }

    .section-header {
        margin-bottom: 30px;
    }

    .section-header h1 {
        font-size: 28px;
        line-height: 1.35;
    }

    .section-header p {
        font-size: 15px;
    }

    .service-card {
        min-height: auto;
        padding: 25px;
    }
}