/* Dynamic Page Styles */
.dynamic-page {
    position: relative;
    min-height: 100vh;
    padding: 100px 0 80px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.page-header {
    margin-bottom: 60px;
}

.page-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #2C3E50;
    margin: 0;
}

.page-content-wrapper {
    background: rgba(240, 247, 255, 0.75);
    border-radius: 16px;
    padding: 50px 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.page-content {
    color: #000000;
    line-height: 1.8;
    font-size: 1.05rem;
}

.page-content h1,
.page-content h2,
.page-content h3,
.page-content h4,
.page-content h5,
.page-content h6 {
    font-family: 'Playfair Display', serif;
    color: #2C3E50;
    margin-top: 30px;
    margin-bottom: 20px;
    font-weight: 600;
}

.page-content h1 {
    font-size: 2.5rem;
}

.page-content h2 {
    font-size: 2rem;
}

.page-content h3 {
    font-size: 1.75rem;
}

.page-content h4 {
    font-size: 1.5rem;
}

.page-content h5 {
    font-size: 1.25rem;
}

.page-content h6 {
    font-size: 1.1rem;
}

.page-content p {
    margin-bottom: 20px;
    color: #000000;
}

.page-content p:last-child {
    margin-bottom: 0;
}

.page-content ul,
.page-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.page-content ul li,
.page-content ol li {
    margin-bottom: 10px;
    color: #000000;
}

.page-content ul li::marker {
    color: #5C6BC0;
}

.page-content a {
    color: #5C6BC0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-content a:hover {
    color: #4A5BB0;
    text-decoration: underline;
}

.page-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

.page-content blockquote {
    border-left: 4px solid #5C6BC0;
    padding-left: 20px;
    margin: 20px 0;
    font-style: italic;
    color: #555;
}

.page-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.page-content table th,
.page-content table td {
    padding: 12px;
    border: 1px solid #E0E0E0;
    text-align: left;
}

.page-content table th {
    background-color: #F8F9FA;
    font-weight: 600;
    color: #2C3E50;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-title {
        font-size: 2.75rem;
    }
    
    .page-content-wrapper {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .dynamic-page {
        padding: 60px 0 50px;
        background-attachment: scroll;
    }
    
    .page-header {
        margin-bottom: 40px;
    }
    
    .page-title {
        font-size: 2.25rem;
    }
    
    .page-content-wrapper {
        padding: 35px 25px;
    }
    
    .page-content {
        font-size: 1rem;
    }
    
    .page-content h1 {
        font-size: 2rem;
    }
    
    .page-content h2 {
        font-size: 1.75rem;
    }
    
    .page-content h3 {
        font-size: 1.5rem;
    }
    
    .page-content h4 {
        font-size: 1.25rem;
    }
}

@media (max-width: 576px) {
    .page-title {
        font-size: 1.75rem;
    }
    
    .page-content-wrapper {
        padding: 30px 20px;
    }
    
    .page-content {
        font-size: 0.95rem;
    }
    
    .page-content h1 {
        font-size: 1.75rem;
    }
    
    .page-content h2 {
        font-size: 1.5rem;
    }
    
    .page-content h3 {
        font-size: 1.25rem;
    }
}
