﻿.content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

    .title-one::after {
        content: "";
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 50px;
        height: 3px;
        background: #004b3a;
    }

.section-description {
    line-height: 1.6;
    margin-bottom: 30px;
    text-align: justify;
}

.custom-list {
    list-style: none;
    padding-left: 0;
}

    .custom-list li {
        position: relative;
        padding-left: 30px;
        margin-bottom: 10px;
        line-height: 1.6;
        font-family: 'Satoshi';
        letter-spacing: -0.16px;
        line-height: 22px;
        font-size: 18px;
        line-height: 1.7em;
    }

        .custom-list li::before {
            content: "\2022";
            position: absolute;
            left: 0;
            top: 0;
            color: #004b3a;
        }

.precision-section {
    padding: 40px;
    background: #ffffff;
    color: #333;
}

.precision-header {
    margin-bottom: 60px;
}

    .precision-header h2 {
        margin-bottom: 20px;
        color: #222;
    }

    .precision-header p {
        max-width: 1200px;
        margin: 0 auto;
        line-height: 1.6;
    }

.cards {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.card {
    border-radius: 8px;
    padding: 30px;
    width: 100%;
    max-width: 100%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

    .card h3 {
        font-size: 1.8rem;
        margin-bottom: 20px;
        border-bottom: 2px solid #004b3a;
        display: inline-block;
        background-color: #ddf1e8;
        padding: 10px;
        font-weight: 600;
        font-family: 'Satoshi';
        letter-spacing: -0.16px;
        line-height: 22px;
        font-size: 18px;
        line-height: 1.7em;
    }

.precision-section .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

img.lazy-img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 767px) {
    .cards {
        flex-direction: column;
        align-items: center;
    }

    .card {
        max-width: 90%;
        padding: 15px;
    }
}
