body {
    line-height: 1.8;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    outline: none;
    text-align: center;
}

.btn-outline {
    border: 2px solid rgba(0, 209, 178, 0);
    color: rgba(0, 209, 178, 0);
    background: transparent;
}

.btn-outline:hover {
    background: rgba(0, 209, 178, 0);
    color: rgba(0, 209, 178, 0);
    box-shadow: rgba(0, 209, 178, 0);
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    border-radius: 20px;
}

.policy-page,
.terms-page {
    min-height: 100vh;
    padding: 8rem 0 4rem;
}

.policy-title,
.terms-title {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00FFE1 0%, #8A7CFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.policy-date,
.terms-date {
    color: #777;
    font-size: 1rem;
    margin-bottom: 3rem;
}

.policy-content,
.terms-content {
    background: rgba(231, 241, 255, 0.9);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.policy-section,
.terms-section {
    margin-bottom: 2.5rem;
}

.policy-section h2,
.terms-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #151515;
    margin-bottom: 1.2rem;
    padding-bottom: 0.8rem;
}

.policy-section h3,
.terms-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--light);
    margin: 1.5rem 0 0.8rem;
}

.policy-section p,
.terms-section p {
    color: var(--light-gray);
    margin-bottom: 1rem;
    text-align: justify;
}

.policy-section ul,
.terms-section ul {
    list-style: none;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.policy-section ul li,
.terms-section ul li {
    color: var(--light-gray);
    margin-bottom: 0.5rem;
    position: relative;
}

.policy-section ul li::before,
.terms-section ul li::before {
    content: '•';
    color: var(--primary);
    font-weight: bold;
    position: absolute;
    left: -1.5rem;
}

.highlight {
    color: #ff6b6b;
    font-weight: 600;
}

@media (max-width: 768px) {
    .policy-page,
    .terms-page {
        padding: 6rem 1rem 3rem;
    }

    .policy-title,
    .terms-title {
        font-size: 2rem;
    }

    .policy-content,
    .terms-content {
        padding: 2rem 1.5rem;
    }

    .policy-section h2,
    .terms-section h2 {
        font-size: 1.5rem;
    }

    .policy-section p,
    .terms-section p {
        text-align: left;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .policy-page,
    .terms-page {
        padding: 7rem 2rem 3rem;
    }

    .policy-title,
    .terms-title {
        font-size: 2.5rem;
    }

    .policy-content,
    .terms-content {
        padding: 2.5rem;
    }
}

@media (min-width: 1921px) {
    .policy-page,
    .terms-page {
        padding: 10rem 0 5rem;
    }

    .policy-title,
    .terms-title {
        font-size: 3.5rem;
    }

    .policy-content,
    .terms-content {
        padding: 4rem;
        max-width: 1200px;
        margin: 0 auto;
    }

    .policy-section h2,
    .terms-section h2 {
        font-size: 2rem;
    }
}