body {
    font-size: 15px;
}

.wrapper {
    max-width: 1300px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: Montserrat, sans-serif;
    width: 90%;
}

.wrapper h3 {
    color: #2C423D;
    font-size: 20px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
    border-bottom: 2px solid #07604E;
    padding-bottom: 10px;
}

.wrapper h4 {
    color: #333;
    font-size: 16px;
    font-weight: 500;
    margin-top: 20px;
    margin-bottom: 10px;
}

.wrapper span {
    color: #666;
    line-height: 1.8;
    display: block;
    margin-bottom: 15px;
    font-size: 14px;
}

.wrapper ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.wrapper ul li {
    color: #555;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
    font-size: 14px;
}

.wrapper ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #07604E;
    font-weight: bold;
    font-size: 16px;
}

table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
    margin: 20px 0;
    background-color: #f9f9f9;
}

th, td {
    border: 1px solid #ddd;
    padding: 12px 8px;
    text-align: center;
    font-size: 14px;
}

th {
    background-color: #07604E;
    color: white;
    font-weight: 600;
}

tr:hover {
    background-color: #f0f0f0;
}

@media (max-width: 1024px) {
    .wrapper {
        width: 95%;
    }
}

@media (max-width: 768px) {
    .wrapper {
        width: 100%;
        padding: 0 15px;
    }

    .wrapper h3 {
        font-size: 18px;
    }

    .wrapper h4 {
        font-size: 15px;
    }

    table {
        font-size: 13px;
    }

    th, td {
        padding: 10px 6px;
    }
}

@media (max-width: 480px) {
    .wrapper {
        padding: 0 10px;
    }

    .wrapper h3 {
        font-size: 16px;
    }

    .wrapper h4 {
        font-size: 14px;
    }

    .wrapper span,
    .wrapper ul li {
        font-size: 13px;
    }

    table {
        font-size: 12px;
    }

    th, td {
        padding: 8px 4px;
    }
}