section.page {
    padding: 40px 0;
}
h1.title {
    text-align: center;
    font-size: 34px;
    margin-bottom: 12px;
    color: var(--green);
}

.glance-intro {
    text-align: center;
    font-size: 16px;
    line-height: 25px;
    color: #3c3c3c;
    margin: 0 auto 28px;
    max-width: 720px;
}

.privacy-glance {
    border: 2px solid var(--green);
    border-radius: 18px;
    padding: 28px 32px;
    margin: 0 0 40px;
    background: #fff;
}
.privacy-glance .glance-header {
    display: flex;
    align-items: center;
    gap: 18px;
    padding-bottom: 22px;
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 24px;
}
.privacy-glance .glance-icon {
    width: 56px;
    height: 56px;
    background: var(--green);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.privacy-glance .glance-title h3 {
    color: var(--green);
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 4px;
}
.privacy-glance .glance-title p {
    color: #555;
    font-size: 16px;
    line-height: 25px;
    margin: 0;
}
.privacy-glance .glance-who-we-are {
    font-size: 16px;
    line-height: 25px;
    color: #3c3c3c;
    background: #f7faf7;
    border-left: 3px solid var(--green);
    padding: 12px 16px;
    border-radius: 6px;
    margin: 0 0 24px;
}
.privacy-glance .glance-who-we-are strong {
    color: var(--green);
}
.privacy-glance .glance-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}
.privacy-glance .glance-col-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}
.privacy-glance .glance-col-header h4 {
    color: var(--green);
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}
.privacy-glance .glance-col ul {
    list-style: disc;
    padding-left: 18px;
    margin: 0;
}
.privacy-glance .glance-col ul li {
    font-size: 16px;
    line-height: 25px;
    color: #3c3c3c;
    margin-bottom: 8px;
}
.privacy-glance .glance-col ul li strong {
    color: #000;
}
.privacy-glance .glance-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    align-items: center;
    justify-content: center;
    padding-top: 22px;
    border-top: 1px solid #e5e5e5;
    font-size: 16px;
    line-height: 25px;
    color: #3c3c3c;
}
.privacy-glance .glance-contact .contact-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
}
.privacy-glance .glance-contact .contact-item + .contact-item::before {
    content: "|";
    color: #d0d0d0;
    margin-right: 16px;
    font-weight: 400;
}
.privacy-glance .glance-contact .contact-item img,
.privacy-glance .glance-contact .contact-item svg {
    flex-shrink: 0;
}
.privacy-glance .glance-contact a {
    color: var(--green);
    text-decoration: none;
    font-weight: 600;
}
.privacy-glance .glance-contact a:hover {
    text-decoration: underline;
}
@media (max-width: 991px) {
    .privacy-glance .glance-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .privacy-glance { padding: 22px 18px; }
    .privacy-glance .glance-header { flex-direction: column; text-align: center; gap: 12px; }
    .privacy-glance .glance-grid { grid-template-columns: 1fr; gap: 18px; }
    .privacy-glance .glance-contact { flex-direction: column; align-items: flex-start; }
}

.content h3 {
    font-size: 24px;
    margin: 22px 0 15px;
}
.content p {
    font-size: 16px;
    line-height: 25px;
    margin-bottom: 10px;
    color: #3c3c3c;
}
.content p strong {
    color: #000;
    font-weight: 700;
}
strong {
    color: #000;
    font-weight: 700;
}
.block ul {
    list-style: inside;
    padding-left: 20px;
    margin-bottom: 12px;
}
.block ul li {
    padding: 2px 0;
}
.block ul ul {
    padding-left: 20px;
    margin-top: 6px;
    margin-bottom: 6px;
}
.block h4 {
    font-size: 16px;
    font-weight: 700;
    margin: 24px 0 12px;
}
.block a {
    color: #2980b9;
    text-decoration: none;
}
.block a:hover {
    text-decoration: underline;
}

.content .notice-meta {
    font-size: 15px;
    color: #555;
    margin-bottom: 20px;
}
.content .notice-footer-note {
    text-align: center;
    color: #555;
    margin-top: 24px;
}

.block table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
}
.block table th,
.block table td {
    border: 1px solid #dddddd;
    padding: 10px;
    text-align: left;
    vertical-align: top;
    font-size: 16px;
    color: #3c3c3c;
}
.block table th {
    background: #f4f4f4;
    text-align: center;
    font-weight: 700;
    color: #000;
}

@media screen and (max-width: 767px) {
    h1.title {
        font-size: 26px;
        margin-bottom: 24px;
    }
    .content h3 {
        font-size: 20px;
        margin: 18px 0 10px;
    }
    .content p {
        font-size: 16px;
        line-height: 22px;
        margin-bottom: 10px;
    }
    section.page {
        padding: 30px 0;
    }
    .block table th,
    .block table td {
        font-size: 15px;
        padding: 8px;
    }
}
