.PolicyPage {
    padding: 180px 0 100px;
    background: #0f0f0f;

    .PolicyPageHead {
        margin-bottom: 50px;
        padding-bottom: 25px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);

        h1 {
            font-size: 48px;
            line-height: 1.2;
            font-weight: 700;
            color: #fff;
            margin-bottom: 10px;
        }

        p {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.65);
            margin: 0;
        }
    }

    .PolicyContent {
        .PolicyItem {
            margin-bottom: 35px;

            &:last-child {
                margin-bottom: 0;
            }

            h2 {
                font-size: 28px;
                line-height: 1.3;
                font-weight: 600;
                color: #fff;
                margin-bottom: 15px;
            }

            h3 {
                font-size: 20px;
                line-height: 1.4;
                font-weight: 600;
                color: #fff;
                margin: 20px 0 10px;
            }

            p {
                font-size: 16px;
                line-height: 1.8;
                color: rgba(255, 255, 255, 0.75);
                margin: 0 0 15px;
            }

            ul {
                margin: 15px 0 0;
                padding-left: 20px;
                list-style: disc;

                li {
                    font-size: 16px;
                    line-height: 1.8;
                    color: rgba(255, 255, 255, 0.75);
                    margin-bottom: 8px;

                    &:last-child {
                        margin-bottom: 0;
                    }
                }
            }

            a {
                color: #31BEEC;
                text-decoration: none;
                transition: 0.3s ease;

                &:hover {
                    opacity: 0.8;
                }
            }
        }
    }

    @media (max-width: 1024px) {
        padding: 150px 0 80px;

        .PolicyPageHead {
            margin-bottom: 40px;

            h1 {
                font-size: 40px;
            }
        }

        .PolicyContent {
            .PolicyItem {
                h2 {
                    font-size: 24px;
                }

                h3 {
                    font-size: 18px;
                }
            }
        }
    }

    @media (max-width: 767px) {
        padding: 130px 0 60px;

        .Container {
            padding: 0 16px;
        }

        .PolicyPageHead {
            margin-bottom: 30px;
            padding-bottom: 20px;

            h1 {
                font-size: 32px;
            }

            p {
                font-size: 14px;
            }
        }

        .PolicyContent {
            .PolicyItem {
                margin-bottom: 28px;

                h2 {
                    font-size: 22px;
                    margin-bottom: 12px;
                }

                h3 {
                    font-size: 17px;
                    margin: 16px 0 8px;
                }

                p,
                ul li {
                    font-size: 15px;
                    line-height: 1.7;
                }
            }
        }
    }
}
