header {
    margin-bottom: 20px;
}

.list h2 {
    font-size: 40px;
    margin-bottom: 15px;
}

.left_box {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.left_box>i {
    color: #0e9384;
    border: 1px solid #0e9384;
    box-shadow: 2px 2px #0E9384;
    margin-right: auto;
    padding: 4px 10px;
    font-size: 14px;
    border-radius: 99px;
}

.left_box .img-box {
    border-radius: 10px;
    overflow: hidden;
}

.left_box .img-box::before {
    padding-top: 60%;
}

.left_box p {
    font-size: 18px;
    color: #101828;
}

.left_box h3 {
    font-size: 24px;
}

.right_box h2 {
    font-size: 27px;
}

b,
strong {
    font-weight: bold;
}

.page-main {
    background-color: #fafafa;
    padding: 40px 0;
    min-height: calc(100vh - 180px);
}

.page-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 2px solid #e0e0e0;
}

.page-header h1 {
    font-size: 42px;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-header .subtitle {
    font-size: 20px;
    color: #666;
    font-style: italic;
}

.page-section {
    margin-bottom: 40px;
}

.page-section h2 {
    font-size: 28px;
    color: #1a1a1a;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e0e0e0;
}

.page-section p {
    font-size: 17px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 15px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 20px;
}

.feature-item {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.feature-item h3 {
    font-size: 20px;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.feature-item p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 0;
}

.styled-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.styled-list li {
    font-size: 17px;
    line-height: 1.8;
    color: #333;
    padding: 10px 0 10px 25px;
    position: relative;
}

.styled-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 18px;
    width: 8px;
    height: 8px;
    background: #0e9384;
    border-radius: 50%;
}

.highlight-box {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #0e9384;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.highlight-box a {
    color: #0e9384;
    font-weight: 500;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 25px;
}

.contact-item {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.contact-icon {
    color: #0e9384;
    margin-bottom: 15px;
}

.contact-item h3 {
    font-size: 22px;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.contact-item p {
    font-size: 15px;
    color: #666;
    margin-bottom: 15px;
}

.contact-link {
    display: inline-block;
    font-size: 16px;
    color: #0e9384;
    font-weight: 500;
    padding: 8px 20px;
    background: rgba(14, 147, 132, 0.1);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.contact-link:hover {
    background: #0e9384;
    color: #fff;
}

.inline-link {
    color: #0e9384;
    font-weight: 500;
}

.footer {
    background: #1a1a1a;
    padding: 25px 0;
    margin-bottom: 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-copyright {
    color: #aaa;
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 25px;
}

.footer-links a {
    color: #ccc;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

@media screen and (max-width:769px) {
    .head {
        padding-bottom: 20px;
    }

    .right_box h2 {
        font-size: 26px;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .page-header .subtitle {
        font-size: 16px;
    }

    .page-section h2 {
        font-size: 24px;
    }

    .feature-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}