.page-wrapper {
    max-width: 50rem;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out;
}

.page-header {
    text-align: center;
    margin-bottom: 3.125rem;
    padding-bottom: 1.875rem;
    position: relative;
    overflow: hidden;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0.9375rem;
    left: 50%;
    transform: translateX(-50%);
    width: 7.5rem;
    height: 0.1875rem;
    background: linear-gradient(90deg, #174392, #4a7bc8, #7986cb, #26a69a);
    border-radius: 0.125rem;
    animation: expandLine 1s ease-out 0.5s both;
}

.page-header h1 {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #174392, #2c5aa0, #4a7bc8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    font-weight: 600;
    animation: slideInDown 0.6s ease-out;
}

.page-header .subtitle {
    font-size: 1.25rem;
    background: linear-gradient(45deg, #5d4e75, #7986cb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 400;
    animation: fadeIn 0.8s ease-out 0.3s both;
}

.effective-date {
    background: linear-gradient(135deg, #4a7bc8, #7986cb);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 1.5625rem;
    display: inline-block;
    margin: 1.25rem 0;
    font-weight: 500;
    font-size: 0.9375rem;
    animation: bounceIn 0.8s ease-out 0.4s both;
    box-shadow: 0 0.25rem 1rem rgba(74, 123, 200, 0.3);
    transition: transform 0.3s ease;
}

.effective-date:hover {
    transform: translateY(-0.125rem);
    box-shadow: 0 0.375rem 1.25rem rgba(74, 123, 200, 0.4);
}

.content-block {
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
    background: rgba(255, 255, 255, 0.8);
    padding: 1.875rem;
    border-radius: 1rem;
    border: 0.0625rem solid rgba(23, 67, 146, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.content-block:hover {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0.75rem 2rem rgba(23, 67, 146, 0.15);
    transform: translateY(-0.1875rem);
}

.content-block:nth-child(3) { animation-delay: 0.1s; }
.content-block:nth-child(4) { animation-delay: 0.2s; }
.content-block:nth-child(5) { animation-delay: 0.3s; }
.content-block:nth-child(6) { animation-delay: 0.4s; }
.content-block:nth-child(7) { animation-delay: 0.5s; }
.content-block:nth-child(8) { animation-delay: 0.6s; }
.content-block:nth-child(9) { animation-delay: 0.7s; }
.content-block:nth-child(10) { animation-delay: 0.8s; }

.content-block h2 {
    color: #174392;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0.625rem 0;
    border-radius: 0.5rem;
}

.content-block h2:hover {
    transform: translateX(0.3125rem);
    background: linear-gradient(135deg, #174392, #2c5aa0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.content-block h3 {
    color: #174392;
    font-size: 1.1875rem;
    margin: 1.5625rem 0 0.9375rem 0;
    font-weight: 500;
    position: relative;
    padding-left: 1.25rem;
}

.content-block h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0.75rem;
    height: 0.75rem;
    background: linear-gradient(45deg, #4a7bc8, #7986cb);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.content-block h2 i {
    background: linear-gradient(45deg, #4a7bc8, #7986cb, #26a69a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.125rem;
    transition: transform 0.3s ease;
}

.content-block h2:hover i {
    transform: scale(1.2) rotate(10deg);
}

.content-block p {
    color: #555;
    margin-bottom: 1rem;
    font-size: 1.0625rem;
    transition: color 0.3s ease;
    line-height: 1.6;
}

.content-block:hover p {
    color: #333;
}

.content-block ul {
    margin-left: 1.25rem;
    margin-bottom: 1.25rem;
}

.content-block li {
    color: #555;
    margin-bottom: 0.75rem;
    font-size: 1.0625rem;
    transition: all 0.3s ease;
    padding: 0.3125rem 0;
    border-radius: 0.25rem;
}

.content-block li:hover {
    color: #333;
    background: rgba(74, 123, 200, 0.1);
    padding-left: 0.625rem;
}

.contact-details {
    margin: 1.25rem 0;
    background: linear-gradient(135deg, rgba(23, 67, 146, 0.05), rgba(74, 123, 200, 0.05));
    padding: 1.25rem;
    border-radius: 0.625rem;
    border-left: 0.25rem solid #4a7bc8;
}

.info-item {
    margin-bottom: 0.75rem;
    font-size: 1.0625rem;
    padding: 0.75rem 0;
    transition: all 0.3s ease;
    border-radius: 0.5rem;
}

.info-item:hover {
    background: linear-gradient(90deg, rgba(74, 123, 200, 0.1), rgba(121, 134, 203, 0.05));
    padding-left: 1rem;
}

.info-item i {
    background: linear-gradient(45deg, #4a7bc8, #7986cb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    width: 1.25rem;
    margin-right: 0.75rem;
    transition: transform 0.3s ease;
}

.info-item:hover i {
    transform: scale(1.15);
}

.legal-reference {
    background: linear-gradient(135deg, rgba(23, 67, 146, 0.1), rgba(23, 67, 146, 0.05));
    padding: 1.5625rem;
    border-left: 0.25rem solid #174392;
    margin: 1.875rem 0;
    font-style: italic;
    border-radius: 0.625rem;
    position: relative;
    overflow: hidden;
}

.legal-reference::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0.125rem;
    background: linear-gradient(90deg, #174392, #4a7bc8, #7986cb, #26a69a);
    animation: shimmer 3s ease-in-out infinite;
}

.page-footer {
    text-align: center;
    margin-top: 4rem;
    padding-top: 2rem;
    position: relative;
    color: #666;
    font-size: 0.9375rem;
    animation: fadeIn 1s ease-out 1s both;
}

.page-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 5rem;
    height: 0.0625rem;
    background: linear-gradient(90deg, transparent, #7986cb, transparent);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(1.875rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-1.875rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes expandLine {
    from {
        width: 0;
    }
    to {
        width: 7.5rem;
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: translateY(-50%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translateY(-50%) scale(1.2);
        opacity: 0.7;
    }
}

@keyframes shimmer {
    0%, 100% {
        transform: translateX(-100%);
    }
    50% {
        transform: translateX(100%);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .page-wrapper {
        max-width: 45rem;
    }
}

@media (max-width: 768px) {    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header .subtitle {
        font-size: 1.125rem;
    }
    
    .effective-date {
        padding: 0.625rem 1.25rem;
        font-size: 0.875rem;
    }
    
    .content-block {
        padding: 1.25rem;
        margin-bottom: 2rem;
    }
    
    .content-block h2 {
        font-size: 1.3125rem;
    }
    
    .content-block h3 {
        font-size: 1.0625rem;
    }
    
    .content-block p {
        font-size: 1rem;
    }
    
    .content-block li {
        font-size: 1rem;
    }
    
    .info-item {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {    
    .page-header h1 {
        font-size: 1.75rem;
    }
    
    .page-header .subtitle {
        font-size: 1rem;
    }
    
    .effective-date {
        padding: 0.5rem 1rem;
        font-size: 0.8125rem;
    }
    
    .content-block {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .content-block h2 {
        font-size: 1.1875rem;
        gap: 0.5rem;
    }
    
    .content-block h3 {
        font-size: 1rem;
        padding-left: 1rem;
    }
    
    .content-block p {
        font-size: 0.9375rem;
    }
    
    .content-block li {
        font-size: 0.9375rem;
    }
    
    .info-item {
        font-size: 0.9375rem;
        padding: 0.5rem 0;
    }
    
    .page-footer {
        font-size: 0.875rem;
        margin-top: 3rem;
    }
}

@media (max-width: 320px) {    
    .page-header h1 {
        font-size: 1.5rem;
    }
    
    .content-block {
        padding: 0.75rem;
    }
    
    .content-block h2 {
        font-size: 1.0625rem;
    }
    
    .content-block h3 {
        font-size: 0.9375rem;
    }
    
    .content-block p {
        font-size: 0.875rem;
    }
    
    .content-block li {
        font-size: 0.875rem;
    }
}