/* Frontend Styles for Custom Page Sections */
.custom-page-section {
    padding: 60px 20px;
    margin: 0;
    width: 100%;
}

.custom-page-section .section-title {
    margin-top: 0;
    margin-bottom: 30px;
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
}

.custom-page-section .section-content {
    max-width: 1200px;
    margin: 0 auto;
}

/* Banner Section */
.custom-page-section-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 100px 20px;
    text-align: center;
}

.custom-page-section-banner .section-title {
    color: #fff;
    font-size: 48px;
    margin-bottom: 20px;
}

.custom-page-section-banner p {
    font-size: 20px;
    margin-bottom: 30px;
}

/* Mission Section */
.custom-page-section-mission {
    background-color: #f7f7f7;
    padding: 80px 20px;
}

.custom-page-section-mission .section-title {
    color: #2c3e50;
}

.custom-page-section-mission p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* About Section */
.custom-page-section-about {
    background-color: #ffffff;
    padding: 80px 20px;
}

.custom-page-section-about .section-title {
    color: #2c3e50;
}

.custom-page-section-about .wp-block-columns {
    align-items: center;
}

/* Services Section */
.custom-page-section-services {
    background-color: #f9f9f9;
    padding: 80px 20px;
}

.custom-page-section-services .section-title {
    color: #2c3e50;
}

.custom-page-section-services .wp-block-column {
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin: 10px;
    transition: transform 0.3s ease;
}

.custom-page-section-services .wp-block-column:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

/* Team Section */
.custom-page-section-team {
    background-color: #fff;
    padding: 80px 20px;
}

.custom-page-section-team .section-title {
    color: #2c3e50;
}

.custom-page-section-team .wp-block-column {
    text-align: center;
    padding: 20px;
}

.custom-page-section-team img {
    border-radius: 50%;
    margin-bottom: 20px;
}

/* Testimonials Section */
.custom-page-section-testimonials {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 80px 20px;
}

.custom-page-section-testimonials .section-title {
    color: #2c3e50;
}

.custom-page-section-testimonials .wp-block-quote {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    border-left: 4px solid #667eea;
    font-size: 18px;
    font-style: italic;
}

/* Contact Section */
.custom-page-section-contact {
    background-color: #2c3e50;
    color: #fff;
    padding: 80px 20px;
}

.custom-page-section-contact .section-title {
    color: #fff;
}

.custom-page-section-contact p {
    color: #ecf0f1;
    font-size: 18px;
}

/* Custom Section */
.custom-page-section-custom {
    padding: 80px 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .custom-page-section {
        padding: 40px 15px;
    }

    .custom-page-section .section-title {
        font-size: 28px;
    }

    .custom-page-section-banner {
        padding: 60px 15px;
    }

    .custom-page-section-banner .section-title {
        font-size: 32px;
    }

    .custom-page-section-services .wp-block-column {
        margin: 10px 0;
    }
}
