.page-content {
    min-height: calc(100vh - 300px);
    padding: 140px 0 4rem;
}

.page-content h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: var(--color-text);
}

.page-content > .container > p {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
}

.page-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.page-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--color-text);
}

.page-content p {
    color: var(--color-text-muted);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.page-content ul,
.page-content ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-text-muted);
}

.page-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.agreements-list {
    margin-top: 1.5rem;
    display: grid;
    gap: 1rem;
}

.agreement-item {
    padding: 1.5rem 2rem;
    background: var(--color-bg-alt);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-surface-dark);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.agreement-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 4px;
    background: var(--color-primary);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s ease;
}

.agreement-item:hover {
    border-color: var(--color-primary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.12);
}

.agreement-item:hover::before {
    transform: scaleY(1);
}

.agreement-item h3 {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.4;
}

.agreement-item h3 a {
    color: var(--color-text);
    text-decoration: none;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.agreement-item h3 a::after {
    content: '→';
    color: var(--color-text-muted);
    transition: transform 0.2s ease, color 0.2s ease;
}

.agreement-item:hover h3 a {
    color: var(--color-primary);
}

.agreement-item:hover h3 a::after {
    transform: translateX(4px);
    color: var(--color-primary);
}

.agreement-content {
    margin-top: 2rem;
    line-height: 1.8;
}

.agreement-content h1,
.agreement-content h2,
.agreement-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.agreement-content h1 {
    font-size: 2rem;
    font-weight: 700;
}

.agreement-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
}

.agreement-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
}

.agreement-content p {
    margin-bottom: 1rem;
    color: var(--color-text-muted);
}

.agreement-content ul,
.agreement-content ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-text-muted);
}

.agreement-content li {
    margin-bottom: 0.5rem;
}

.breadcrumbs {
    margin-bottom: 1.5rem;
}

.breadcrumbs a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.breadcrumbs a:hover {
    color: var(--color-primary-light);
}

.home-button-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-surface-dark);
}

.btn-home {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 3rem;
    background: var(--color-primary);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.btn-home:hover {
    background: var(--color-primary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 3rem 0;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.footer-links a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--color-primary);
}

.footer-copy {
    text-align: center;
}

.footer-copy p {
    color: var(--color-text-muted);
    font-size: 0.85rem;
}