/* Static Page Styles */

/* Static Page Section */
.static-page-section {
    padding: 60px 0;
    background: #f8f9fa;
    min-height: 70vh;
}

.static-page-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Page Image */
.static-page-image {
    text-align: center;
    margin-bottom: 40px;
}

.static-page-image img {
    max-width: 100%;
    max-height: 400px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

/* Page Header */
.static-page-header {
    text-align: center;
    margin-bottom: 50px;
}

.static-page-header h1 {
    font-size: 3rem;
    color: #2c5aa0;
    margin-bottom: 20px;
    font-weight: 700;
}

.static-page-header .header-line {
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #2c5aa0 0%, #ff6b35 100%);
    margin: 0 auto;
    border-radius: 2px;
}

/* Main Content */
.static-page-content {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    padding: 50px;
    margin-bottom: 40px;
}

.static-page-content-inner {
    line-height: 1.9;
    color: #333;
    font-size: 1.1rem;
    text-align: justify;
}

/* Content Elements */
.static-page-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
}

.static-page-content h1,
.static-page-content h2,
.static-page-content h3 {
    color: #2c5aa0;
}

.static-page-content p {
    margin-bottom: 1.5rem;
}

.static-page-content ul,
.static-page-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

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

.static-page-content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
}

.static-page-content table th,
.static-page-content table td {
    padding: 12px;
    border: 1px solid #dee2e6;
}

.static-page-content table th {
    background-color: #f8f9fa;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .static-page-section .container {
        padding: 0 15px;
    }
    
    .static-page-header h1 {
        font-size: 2rem;
    }
    
    .static-page-content {
        padding: 30px 20px;
    }
}
