:root {
    --primary: #304b6c;
    --primary-dark: #243c59;
    --secondary: #b89455;
    --light-bg: #f6f7f8;
    --text-color: #4f5965;
    --white: #ffffff;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: var(--light-bg);
    color: var(--text-color);
}

.daily-life-section {
    padding: 80px 0;
    /*background:
        linear-gradient(
            135deg,
            #f8f8f8 0%,
            #f2f3f5 100%
        );*/
}

/* Header */

.section-header {
    max-width: 780px;
    margin-bottom: 35px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
}

.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: 10px;
    margin-bottom: 22px;
}

.section-header p {
    font-size: 17px;
    line-height: 1.8;
    margin: 0;
}

/* Text */

.service-card h4 {
    color: var(--primary);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 14px;
}

.service-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #69727c;
    margin-bottom: 20px;
}

/* Link */

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover {
    color: var(--primary);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Responsive */

@media (max-width: 767px) {

    .daily-life-section {
        padding: 55px 0;
    }

    .section-header h1 {
        font-size: 30px;
    }

    .section-header p {
        font-size: 15px;
    }

    .service-card {
        padding: 25px;
    }
}
