/* Replicating BeTheme CSS Architecture */
body {
    background-color: #d1d0d0;
    font-family: 'Roboto', sans-serif;
    color: #626262;
    -webkit-font-smoothing: antialiased;
}

#Wrapper {
    max-width: 1240px;
    margin: 0 auto;
    background: #fcfcfc;
    box-shadow: 0 0 15px rgba(0, 0, 0, .06);
}

#Top_bar {
    padding: 15px 0;
    border-bottom: 1px solid #f2f2f2;
}
.logo {
    text-align: center;
}
.logo img {
    height: 60px;
}

.menu {
    display: flex;
    list-style: none;
    justify-content: center;
    padding: 20px 0;
}

.menu li a {
    text-decoration: none;
    color: #444;
    padding: 0 15px;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 13px;
}

#Subheader {
    background-color: #f7f7f7;
    padding: 40px 0;
    text-align: center;
}

#Subheader h1 {
    font-size: 28px;
    color: #333;
}

/* Hero Reconstruction */
.section-hero {
    background-image: url('imges/background-last.jpg');
    background-size: cover;
    background-position: center top;
    padding: 150px 0 80px;
    text-align: center;
}

.bg-white-box {
    background-color: #ffffff;
    display: inline-block;
    padding: 10px 20px;
    margin: 10px;
}

.hero-flex {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

/* Benefits Grid */
.section-benefits {
    padding: 60px 0;
    text-align: center;
}

.benefit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.benefit-item img {
    margin-bottom: 20px;
}

.jojo-box {
    margin-top: 40px;
    background: #fdfdfd;
    padding: 30px;
    border: 1px solid #eee;
}

/* Photos Grid */
.section-guidelines {
    padding: 60px 0;
    background: #fff;
}

.center-text { text-align: center; margin-bottom: 10px; }
.sub { margin-bottom: 40px; color: #888; }

.photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.photo-box {
    text-align: left;
    border-bottom: 3px solid #e7e3e3;
    padding-bottom: 20px;
}

.photo-box img {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
}

.photo-box h4 {
    color: #333;
    margin-bottom: 10px;
}

/* Footer */
#Footer {
    background-color: #ffffff;
    border-top: 1px solid #f2f2f2;
    padding: 30px 0;
    text-align: center;
}

.copyright {
    color: #a8a8a8;
    font-size: 13px;
}

@media (max-width: 768px) {
    .hero-flex, .benefit-grid, .photo-grid {
        grid-template-columns: 1fr;
    }
    .menu { flex-wrap: wrap; }
}
/* Guidelines Section Styling */
.section-guidelines {
    padding: 40px 0;
    background: #fff;
}

.photo-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
    padding: 0 15px;
}

.photo-box {
    margin-bottom: 30px;
}

.photo-box img {
    width: 100%;
    height: auto;
    border-radius: 2px;
}

.photo-box h4 {
    margin: 15px 0 10px;
    color: #333;
}

.photo-box .desc {
    font-size: 14px;
    color: #666;
}

.one-third { width: calc(33.333% - 20px); }
.one-fourth { width: calc(25% - 20px); }

/* FAQ Accordion Styling */
.section-faq {
    background-color: #e7e3e3;
    padding: 12px;
}

.faq-title {
    margin-bottom: 25px;
    font-size: 20px;
    color: #333;
}

.accordion details {
    background: #fff;
    margin-bottom: 10px;
    border-radius: 3px;
    overflow: hidden;
}

.accordion summary {
    padding: 15px 20px;
    font-weight: 500;
    cursor: pointer;
    list-style: none;
    position: relative;
    border-bottom: 1px solid #f2f2f2;
}

.accordion summary::-webkit-details-marker { display: none; }

.accordion .answer {
    padding: 20px;
    background: #fafafa;
    font-size: 14px;
}

/* Book CTA Section */
.section-book-cta {
    background-color: #2d3238;
    color: #ffffff;
    padding: 80px 0;
}

.section-book-cta h2 { font-size: 30px; margin-bottom: 10px; }
.section-book-cta h3 { font-size: 22px; font-weight: 300; margin-bottom: 15px; opacity: 0.9; }
.section-book-cta h4 { font-size: 16px; font-weight: 300; line-height: 1.6; max-width: 800px; margin: 0 auto; opacity: 0.8; }

/* Responsive Fixes */
@media (max-width: 959px) {
    .one-third, .one-fourth { width: calc(50% - 20px); }
}

@media (max-width: 480px) {
    .one-third, .one-fourth { width: 100%; }
}

/* Subheader Breadcrumbs */
.breadcrumbs {
    list-style: none;
    padding: 10px 0;
    font-size: 13px;
    color: #888;
}

.breadcrumbs li { display: inline; }
.breadcrumbs a { color: #005691; text-decoration: none; }
.breadcrumbs .sep { margin: 0 10px; }

/* Article Layout */
.article-content {
    padding: 60px 0;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.intro-text {
    font-size: 18px;
    color: #444;
    margin-bottom: 30px;
}

/* Ad Placeholder */
.ad-placeholder {
    margin: 40px 0;
    border: 1px solid #e0e0e0;
    padding: 10px;
    text-align: center;
    background: #f9f9f9;
}

.ad-placeholder p {
    font-size: 11px;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 5px;
}

.ad-box-dummy {
    width: 100%;
    height: 90px;
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bbb;
    border: 1px dashed #ccc;
}

/* Page Elements */
.info-highlight {
    background-color: #f0f7fd;
    padding: 30px;
    border-left: 5px solid #005691;
    margin: 40px 0;
}

.user-interaction {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.user-interaction h4 {
    color: #005691;
    margin-bottom: 10px;
}

h3 {
    margin: 30px 0 15px;
    color: #333;
}

/* Book Grid Styling */
.book-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
}

.book-item {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    background: #fdfdfd;
    padding: 25px;
    border: 1px solid #eee;
    border-radius: 4px;
}

.book-image img {
    width: 200px;
    height: auto;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.book-info h3 {
    margin-top: 0;
    color: #005691;
    font-size: 22px;
}

.order-links {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.order-links li {
    margin-bottom: 8px;
}

.order-links a {
    display: inline-block;
    color: #fff;
    background: #005691;
    padding: 8px 20px;
    border-radius: 3px;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.3s ease;
    min-width: 120px;
    text-align: center;
}

.order-links a:hover {
    background: #003d66;
}

/* Responsive Table-to-Grid Fix */
@media (max-width: 600px) {
    .book-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .book-image img {
        width: 180px;
    }
}

.center-text { text-align: center; }
/* Contact Page Specifics */
.section-contact-intro {
    padding: 60px 0 30px;
}

.warning-box {
    margin-top: 20px;
    padding: 15px;
    border: 1px solid #ff0000;
    color: #ff0000;
    display: inline-block;
    background: #fffafa;
}

.contact-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 50px;
    padding-bottom: 80px;
    margin: 0 50px;
}

/* Form Styling */
.modern-form {
    background: #fff;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
    flex: 1;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 14px;
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 2px;
    font-family: inherit;
}

.submit-button {
    background: #005691;
    color: #fff;
    padding: 15px 35px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.3s;
}

.submit-button:hover {
    background: #003d66;
}

/* Sidebar Styling */
.contact_box h3 {
    border-bottom: 2px solid #005691;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.contact-list {
    list-style: none;
    padding: 0;
}

.contact-list li {
    margin-bottom: 15px;
    display: flex;
    gap: 10px;
}

.contact-list .label {
    font-weight: bold;
    color: #333;
}

/* Responsive */
@media (max-width: 800px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .form-row {
        flex-direction: column;
        gap: 0;
    }
}
/* Blog Styling */
.content_wrapper {
    margin: 0 50px;
}
.blog-filters {
    padding: 30px 0;
    border-bottom: 1px solid #eee;
    margin-bottom: 40px;
}

.filter-list {
    display: flex;
    list-style: none;
    padding: 0;
    gap: 20px;
    flex-wrap: wrap;
}

.filter-list li a {
    text-decoration: none;
    color: #666;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    padding: 5px 15px;
    border-radius: 20px;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
}

.filter-list li.active a, .filter-list li a:hover {
    background: #005691;
    color: #fff;
    border-color: #005691;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.blog-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.post-date {
    background: #f9f9f9;
    padding: 10px 20px;
    font-size: 12px;
    color: #999;
    border-bottom: 1px solid #eee;
}

.post-content {
    padding: 25px;
}

.category-tag {
    color: #005691;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}

.blog-card h2 {
    font-size: 20px;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.blog-card h2 a {
    color: #333;
    text-decoration: none;
}

.blog-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more-btn {
    font-weight: 700;
    color: #005691;
    text-decoration: none;
    font-size: 14px;
}

/* Pagination */
.pagination {
    text-align: center;
    padding-bottom: 60px;
}

.page-numbers {
    display: inline-block;
    padding: 8px 16px;
    margin: 0 4px;
    border: 1px solid #ddd;
    text-decoration: none;
    color: #333;
}

.page-numbers.current {
    background: #005691;
    color: #fff;
    border-color: #005691;
}