/* 
 * Custom Components Styles
 * EC-CUBE 4 SPRO01 Theme
 */

/* Common Section Styles */
.ch-section {
    margin: 60px 0;
    position: relative;
}

/* Hero Section */
.ch-section .hero-block {
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: row-reverse;
    min-height: 450px;
    position: relative;
}

.ch-section .hero-content {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
}

.ch-section .hero-image {
    flex: 1.2;
    overflow: hidden;
}

.ch-section .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ch-section .hero-block:hover .hero-image img {
    transform: scale(1.05);
}

.ch-section .hero-content h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    position: relative;
}

.ch-section .hero-content h1:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.ch-section .hero-content p {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.ch-section .hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.ch-section .hero-buttons .btn {
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.ch-section .hero-buttons .btn-primary {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
}

.ch-section .hero-buttons .btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.ch-section .hero-buttons .btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.ch-section .hero-buttons .btn-secondary:hover {
    background-color: var(--neutral-color);
    transform: translateY(-2px);
}

/* Image Content Section */
.ch-section .image-content-section {
    padding: 40px 0;
    position: relative;
}

.ch-section .image-content-container {
    display: flex;
    gap: 40px;
    align-items: center;
    border-radius: 8px;
    overflow: hidden;
}

.ch-section .image-content-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.ch-section .image-content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
    transition: transform 0.5s ease;
}

.ch-section .image-content-container:hover .image-content-image img {
    transform: scale(1.05);
}

.ch-section .image-content-content {
    flex: 1;
    padding: 40px;
}

.ch-section .image-content-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    position: relative;
}

.ch-section .image-content-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.ch-section .image-content-description {
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.ch-section .image-content-button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 30px;
    background-color: var(--primary-color);
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.ch-section .image-content-button:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* CTA Section */
.ch-section .cta-section {
    background-color: var(--neutral-color);
    background-image: linear-gradient(135deg, rgba(var(--primary-color-rgb), 0.05) 25%, transparent 25%, transparent 50%, rgba(var(--primary-color-rgb), 0.05) 50%, rgba(var(--primary-color-rgb), 0.05) 75%, transparent 75%, transparent);
    background-size: 40px 40px;
    padding: 60px 0;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
}

.ch-section .cta-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.ch-section .cta-content {
    flex: 1;
    min-width: 300px;
}

.ch-section .cta-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
}

.ch-section .cta-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.ch-section .cta-description {
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.6;
    max-width: 600px;
}

.ch-section .cta-action {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.ch-section .cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: var(--primary-color);
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    border-radius: 30px;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 180px;
}

.ch-section .cta-button:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.ch-section .cta-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.ch-section .cta-secondary:hover {
    background-color: var(--neutral-color);
    color: var(--primary-color);
}

/* Feature Cards Section */
.ch-section .feature-cards-section {
    padding: 40px 0;
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
}

.ch-section .feature-cards-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    position: relative;
}

.ch-section .feature-cards-title:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.ch-section .feature-cards-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.ch-section .feature-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: calc(33.333% - 20px);
    max-width: 350px;
}

.ch-section .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.ch-section .feature-card-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.ch-section .feature-card-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.ch-section .feature-card-description {
    color: var(--text-color);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Fullwidth Image Section */
.ch-fullwidth-image {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    margin: 0;
}

.ch-fullwidth-image-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.ch-fullwidth-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.ch-fullwidth-image-container:hover img {
    transform: scale(1.05);
}

.ch-fullwidth-image-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    z-index: 2;
}

.ch-fullwidth-image-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.ch-fullwidth-image-description {
    max-width: 800px;
    margin: 0 auto 2rem;
    font-size: 1.2rem;
    line-height: 1.6;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.ch-fullwidth-image-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.ch-fullwidth-image-button:hover {
    background-color: #fff;
    color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Text Section */
.ch-text-section {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 80px 0;
}

.ch-text-section-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.ch-text-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.ch-text-section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.ch-text-section-description {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
}

.ch-text-section-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.ch-text-section-button:hover {
    background-color: #fff;
    color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Two Column Section */
.ch-two-column {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 80px 0;
}

.ch-two-column-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.ch-two-column-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
    text-align: center;
}

.ch-two-column-description {
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-color);
    text-align: center;
}

.ch-two-column-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.ch-two-column-item {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.ch-two-column-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.ch-two-column-item-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.ch-two-column-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ch-two-column-item:hover .ch-two-column-item-image img {
    transform: scale(1.05);
}

.ch-two-column-item-content {
    padding: 25px;
}

.ch-two-column-item-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.ch-two-column-item-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.ch-two-column-item-button {
    display: inline-block;
    padding: 10px 25px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.ch-two-column-item-button:hover {
    background-color: #fff;
    color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Basic Section */
.ch-basic-section {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 80px 0;
}

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

.ch-basic-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    text-align: center;
}

.ch-basic-section-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.ch-basic-section-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.ch-basic-section-image {
    margin: 2rem 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.ch-basic-section-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.ch-basic-section-image:hover img {
    transform: scale(1.02);
}

.ch-basic-section-buttons {
    display: flex;
    gap: 20px;
    margin-top: 1rem;
    justify-content: center;
}

.ch-basic-section-button {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ch-basic-section-button.primary {
    background-color: var(--primary-color);
    color: #fff;
    border: 2px solid transparent;
}

.ch-basic-section-button.primary:hover {
    background-color: #fff;
    color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.ch-basic-section-button.secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.ch-basic-section-button.secondary:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Common Section Styles */
.ch-section {
    margin-bottom: 60px;
}

/* Full Width Sections - Used for contents_bottom */
.contents_bottom .ch-section {
    padding-left: 0;
    padding-right: 0;
    max-width: 100%;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}

/* Category attributes */
.hero-block { /* Category: Hero */
    /* Existing properties remain */
}

.image-content-section { /* Category: Image, Content */
    /* Existing properties remain */
}

.cta-section { /* Category: CTA */
    /* Existing properties remain */
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
}

.feature-cards-section { /* Category: Features */
    /* Existing properties remain */
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
}

/* Media Queries */
@media (max-width: 992px) {
    .ch-fullwidth-image-title {
        font-size: 2.5rem;
    }

    .ch-text-section-title {
        font-size: 2.2rem;
    }

    .ch-two-column-title {
        font-size: 2.2rem;
    }

    .ch-two-column-items {
        gap: 25px;
    }

    .ch-basic-section-title {
        font-size: 2.2rem;
    }

    .ch-section .feature-card {
        width: calc(50% - 15px);
    }
}

/* Sidebar components */
/* Common sidebar section styles */
.ch-section.side_left,
.ch-section.side_right {
    width: 100%;
    margin-bottom: 30px;
}

/* Sidebar Category */
.ch-sidebar-category {
    border-radius: 8px;
    overflow: hidden;
}

.ch-sidebar-category-container {
    padding: 15px 0;
}

.ch-sidebar-category-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.ch-sidebar-category-content {
    margin-top: 15px;
}

.ch-sidebar-category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ch-sidebar-category-list li {
    margin-bottom: 8px;
}

.ch-sidebar-category-list li a {
    display: block;
    padding: 8px 0;
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border-bottom: 1px dashed #f5f5f5;
}

.ch-sidebar-category-list li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

/* Sidebar Recent Posts */
.ch-sidebar-recent {
    border-radius: 8px;
    overflow: hidden;
}

.ch-sidebar-recent-container {
    padding: 15px 0;
}

.ch-sidebar-recent-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.ch-sidebar-recent-content {
    margin-top: 15px;
}

.ch-sidebar-recent-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ch-sidebar-recent-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #f5f5f5;
}

.ch-sidebar-recent-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.ch-sidebar-recent-image {
    flex: 0 0 60px;
    width: 60px;
    height: 60px;
    margin-right: 12px;
    border-radius: 4px;
    overflow: hidden;
}

.ch-sidebar-recent-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.ch-sidebar-recent-item:hover .ch-sidebar-recent-image img {
    transform: scale(1.1);
}

.ch-sidebar-recent-info {
    flex: 1;
}

.ch-sidebar-recent-info-title {
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0 0 5px 0;
    line-height: 1.3;
}

.ch-sidebar-recent-info-date {
    font-size: 0.8rem;
    color: #999;
}

/* Sidebar Popular Products */
.ch-sidebar-popular {
    border-radius: 8px;
    overflow: hidden;
}

.ch-sidebar-popular-container {
    padding: 15px 0;
}

.ch-sidebar-popular-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.ch-sidebar-popular-content {
    margin-top: 15px;
}

.ch-sidebar-popular-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ch-sidebar-popular-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #f5f5f5;
}

.ch-sidebar-popular-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.ch-sidebar-popular-image {
    flex: 0 0 60px;
    width: 60px;
    height: 60px;
    margin-right: 12px;
    border-radius: 4px;
    overflow: hidden;
}

.ch-sidebar-popular-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.ch-sidebar-popular-item:hover .ch-sidebar-popular-image img {
    transform: scale(1.1);
}

.ch-sidebar-popular-info {
    flex: 1;
}

.ch-sidebar-popular-info-title {
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0 0 5px 0;
    line-height: 1.3;
}

.ch-sidebar-popular-info-price {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 3px;
}

.ch-sidebar-popular-info-rating {
    font-size: 0.8rem;
    color: #f9a825;
}

.ch-sidebar-popular-info-rating .count {
    color: #999;
    margin-left: 5px;
}

/* Responsive */
@media (max-width: 992px) {
    .ch-section.side_left,
    .ch-section.side_right {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .ch-section.side_left,
    .ch-section.side_right {
        width: 100%;
        margin-bottom: 20px;
    }
}

.ch-sidebar-category-content {
    margin-top: 15px;
}

.ch-sidebar-category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ch-sidebar-category-list li {
    margin-bottom: 8px;
}

.ch-sidebar-category-list li a {
    display: block;
    padding: 8px 0;
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border-bottom: 1px dashed #f5f5f5;
}

.ch-sidebar-category-list li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

/* Sidebar Recent Posts */
.ch-sidebar-recent {
    border-radius: 8px;
    overflow: hidden;
}

.ch-sidebar-recent-container {
    padding: 15px 0;
}

.ch-sidebar-recent-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.ch-sidebar-recent-content {
    margin-top: 15px;
}

.ch-sidebar-recent-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ch-sidebar-recent-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #f5f5f5;
}

.ch-sidebar-recent-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.ch-sidebar-recent-image {
    flex: 0 0 60px;
    width: 60px;
    height: 60px;
    margin-right: 12px;
    border-radius: 4px;
    overflow: hidden;
}

.ch-sidebar-recent-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.ch-sidebar-recent-item:hover .ch-sidebar-recent-image img {
    transform: scale(1.1);
}

.ch-sidebar-recent-info {
    flex: 1;
}

.ch-sidebar-recent-info-title {
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0 0 5px 0;
    line-height: 1.3;
}

.ch-sidebar-recent-info-date {
    font-size: 0.8rem;
    color: #999;
}

/* Sidebar Popular Products */
.ch-sidebar-popular {
    border-radius: 8px;
    overflow: hidden;
}

.ch-sidebar-popular-container {
    padding: 15px 0;
}

.ch-sidebar-popular-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.ch-sidebar-popular-content {
    margin-top: 15px;
}

.ch-sidebar-popular-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ch-sidebar-popular-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #f5f5f5;
}

.ch-sidebar-popular-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.ch-sidebar-popular-image {
    flex: 0 0 60px;
    width: 60px;
    height: 60px;
    margin-right: 12px;
    border-radius: 4px;
    overflow: hidden;
}

.ch-sidebar-popular-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.ch-sidebar-popular-item:hover .ch-sidebar-popular-image img {
    transform: scale(1.1);
}

.ch-sidebar-popular-info {
    flex: 1;
}

.ch-sidebar-popular-info-title {
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0 0 5px 0;
    line-height: 1.3;
}

.ch-sidebar-popular-info-price {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 3px;
}

.ch-sidebar-popular-info-rating {
    font-size: 0.8rem;
    color: #f9a825;
}

.ch-sidebar-popular-info-rating .count {
    color: #999;
    margin-left: 5px;
}

/* Responsive */
@media (max-width: 992px) {
    .ch-section.side_left,
    .ch-section.side_right {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .ch-section.side_left,
    .ch-section.side_right {
        width: 100%;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .ch-fullwidth-image-container {
        height: 400px;
    }

    .ch-fullwidth-image-title {
        font-size: 2rem;
    }

    .ch-fullwidth-image-description {
        font-size: 1rem;
    }

    .ch-text-section {
        padding: 60px 0;
    }

    .ch-text-section-title {
        font-size: 2rem;
    }

    .ch-text-section-description {
        font-size: 1rem;
    }

    .ch-two-column {
        padding: 60px 0;
    }

    .ch-two-column-title {
        font-size: 2rem;
    }

    .ch-two-column-items {
        grid-template-columns: 1fr;
    }

    .ch-basic-section {
        padding: 60px 0;
    }

    .ch-basic-section-title {
        font-size: 2rem;
    }

    .ch-basic-section-buttons {
        flex-direction: column;
        align-items: center;
    }

    .ch-section .feature-card {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 576px) {
    .ch-fullwidth-image-container {
        height: 350px;
    }

    .ch-fullwidth-image-title {
        font-size: 1.8rem;
    }

    .ch-fullwidth-image-description {
        font-size: 0.9rem;
    }

    .ch-fullwidth-image-button {
        padding: 10px 25px;
        font-size: 1rem;
    }

    .ch-text-section {
        padding: 50px 0;
    }

    .ch-text-section-title {
        font-size: 1.8rem;
    }

    .ch-text-section-description {
        font-size: 0.9rem;
    }

    .ch-text-section-button {
        padding: 10px 25px;
        font-size: 1rem;
    }

    .ch-two-column {
        padding: 50px 0;
    }

    .ch-two-column-title {
        font-size: 1.8rem;
    }

    .ch-two-column-description {
        font-size: 0.9rem;
    }

    .ch-basic-section {
        padding: 50px 0;
    }

    .ch-basic-section-title {
        font-size: 1.8rem;
    }

    .ch-basic-section-content p {
        font-size: 0.9rem;
    }

    .ch-basic-section-button {
        width: 100%;
        text-align: center;
    }
}

/* ===== Compact Sections for main_bottom area ===== */
/* Common styles for compact sections in main_bottom */
.main_bottom .ch-section {
    margin-bottom: 25px;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.main_bottom .ch-section:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

/* Compact Section 1 */
.ch-basic-section-compact1 {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.ch-basic-section-compact1:hover {
    border-color: var(--primary-color);
}

.ch-basic-section-compact1 .ch-basic-section-compact-container {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.ch-basic-section-compact1 .ch-basic-section-compact-title {
    font-size: 18px;
    margin: 0 0 12px 0;
    color: var(--primary-color);
    font-weight: 600;
    line-height: 1.3;
    position: relative;
    padding-bottom: 8px;
}

.ch-basic-section-compact1 .ch-basic-section-compact-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 3px;
}

.ch-basic-section-compact1 .ch-basic-section-compact-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ch-basic-section-compact1 .ch-basic-section-compact-content p {
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
    color: var(--text-color);
}

.ch-basic-section-compact1 .ch-basic-section-compact-buttons {
    display: flex;
    gap: 10px;
    margin-top: 5px;
}

.ch-basic-section-compact1 .ch-basic-section-compact-button {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.ch-basic-section-compact1 .ch-basic-section-compact-button.primary {
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.ch-basic-section-compact1 .ch-basic-section-compact-button.primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

/* Compact Section 2 */
.ch-basic-section-compact2 {
    background-color: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 20px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.ch-basic-section-compact2:hover {
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.ch-basic-section-compact2 .ch-basic-section-compact2-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ch-basic-section-compact2 .ch-basic-section-compact2-image {
    margin-bottom: 15px;
    width: 100%;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}

.ch-basic-section-compact2 .ch-basic-section-compact2-image:after {
    content: '';
    display: block;
    padding-bottom: 62.5%; /* 8:5 aspect ratio */
}

.ch-basic-section-compact2 .ch-basic-section-compact2-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
    transition: transform 0.5s ease;
}

.ch-basic-section-compact2:hover .ch-basic-section-compact2-image img {
    transform: scale(1.05);
}

.ch-basic-section-compact2 .ch-basic-section-compact2-title {
    font-size: 17px;
    margin: 0 0 10px 0;
    color: var(--primary-color);
    font-weight: 600;
    text-align: center;
}

.ch-basic-section-compact2 .ch-basic-section-compact2-content {
    text-align: center;
}

.ch-basic-section-compact2 .ch-basic-section-compact2-content p {
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
    color: var(--text-color);
}

/* Compact Section 3 */
.ch-basic-section-compact3 {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    border: 1px solid #e1e8f0;
    transition: all 0.3s ease;
}

.ch-basic-section-compact3 .ch-basic-section-compact3-container {
    width: 100%;
}

.ch-basic-section-compact3 .ch-basic-section-compact3-title {
    font-size: 17px;
    margin: 0 0 15px 0;
    color: var(--primary-color);
    font-weight: 600;
    border-bottom: 1px solid #cbd5e0;
    padding-bottom: 8px;
    position: relative;
}

.ch-basic-section-compact3 .ch-basic-section-compact3-title:after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 3px;
}

.ch-basic-section-compact3 .ch-basic-section-compact3-list {
    list-style-type: none;
    padding: 0;
    margin: 0 0 15px 0;
}

.ch-basic-section-compact3 .ch-basic-section-compact3-item {
    padding: 8px 0;
    font-size: 14px;
    border-bottom: 1px dotted #cbd5e0;
    color: var(--text-color);
    position: relative;
    padding-left: 20px;
    transition: all 0.2s ease;
}

.ch-basic-section-compact3 .ch-basic-section-compact3-item:before {
    content: '';
    position: absolute;
    left: 0;
    top: 15px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--primary-color);
}

.ch-basic-section-compact3 .ch-basic-section-compact3-item:hover {
    color: var(--primary-color);
    padding-left: 22px;
}

.ch-basic-section-compact3 .ch-basic-section-compact3-footer {
    text-align: right;
    margin-top: 10px;
}

.ch-basic-section-compact3 .ch-basic-section-compact3-link {
    font-size: 13px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding-right: 18px;
    transition: all 0.2s ease;
}

.ch-basic-section-compact3 .ch-basic-section-compact3-link:after {
    content: '→';
    position: absolute;
    right: 0;
    top: 0;
    transition: transform 0.2s ease;
}

.ch-basic-section-compact3 .ch-basic-section-compact3-link:hover {
    color: var(--secondary-color);
}

.ch-basic-section-compact3 .ch-basic-section-compact3-link:hover:after {
    transform: translateX(3px);
}

/* Media queries for compact sections */
@media (max-width: 767px) {
    .ch-basic-section-compact1 .ch-basic-section-compact-title,
    .ch-basic-section-compact2 .ch-basic-section-compact2-title,
    .ch-basic-section-compact3 .ch-basic-section-compact3-title {
        font-size: 16px;
    }

    .ch-basic-section-compact1 .ch-basic-section-compact-content p,
    .ch-basic-section-compact2 .ch-basic-section-compact2-content p,
    .ch-basic-section-compact3 .ch-basic-section-compact3-item {
        font-size: 13px;
    }

    .ch-basic-section-compact1 .ch-basic-section-compact-button {
        padding: 6px 14px;
        font-size: 13px;
    }

    .ch-basic-section-compact1,
    .ch-basic-section-compact2,
    .ch-basic-section-compact3 {
        padding: 15px;
    }
}

/* ===== Additional Basic Section Layouts ===== */

/* Grid Layout Section */
.ch-basic-section-grid {
    border-radius: 8px;
    padding: 30px;
    transition: all 0.3s ease;
}

.ch-basic-section-grid-container {
    width: 100%;
}

.ch-basic-section-grid-title {
    font-size: 22px;
    margin: 0 0 20px 0;
    color: var(--primary-color);
    font-weight: 600;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

.ch-basic-section-grid-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 3px;
}

.ch-basic-section-grid-description {
    text-align: center;
    margin-bottom: 30px;
    color: var(--text-color);
    font-size: 15px;
    line-height: 1.6;
}

.ch-basic-section-grid-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.ch-basic-section-grid-item {
    background-color: #fff;
    border-radius: 6px;
    padding: 20px;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.ch-basic-section-grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    border-color: var(--primary-color);
}

.ch-basic-section-grid-item-icon {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--primary-color);
    text-align: center;
}

.ch-basic-section-grid-item-title {
    font-size: 17px;
    margin: 0 0 10px 0;
    color: var(--primary-color);
    font-weight: 600;
    text-align: center;
}

.ch-basic-section-grid-item-content {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-color);
    text-align: center;
}

/* Timeline Section */
.ch-basic-section-timeline {
    border-radius: 8px;
    padding: 30px;
    transition: all 0.3s ease;
}

.ch-basic-section-timeline-container {
    width: 100%;
}

.ch-basic-section-timeline-title {
    font-size: 22px;
    margin: 0 0 30px 0;
    color: var(--primary-color);
    font-weight: 600;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

.ch-basic-section-timeline-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 3px;
}

.ch-basic-section-timeline-items {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.ch-basic-section-timeline-items:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background-color: #e9ecef;
    transform: translateX(-50%);
}

.ch-basic-section-timeline-item {
    position: relative;
    margin-bottom: 30px;
    width: 100%;
}

.ch-basic-section-timeline-item:nth-child(odd) {
    padding-right: calc(50% + 30px);
}

.ch-basic-section-timeline-item:nth-child(even) {
    padding-left: calc(50% + 30px);
}

.ch-basic-section-timeline-item-content {
    background-color: #fff;
    border-radius: 6px;
    padding: 20px;
    position: relative;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.ch-basic-section-timeline-item-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    border-color: var(--primary-color);
}

.ch-basic-section-timeline-item:nth-child(odd) .ch-basic-section-timeline-item-content:after {
    content: '';
    position: absolute;
    top: 20px;
    right: -10px;
    width: 20px;
    height: 20px;
    background-color: #fff;
    border-top: 1px solid #e9ecef;
    border-right: 1px solid #e9ecef;
    transform: rotate(45deg);
}

.ch-basic-section-timeline-item:nth-child(even) .ch-basic-section-timeline-item-content:after {
    content: '';
    position: absolute;
    top: 20px;
    left: -10px;
    width: 20px;
    height: 20px;
    background-color: #fff;
    border-bottom: 1px solid #e9ecef;
    border-left: 1px solid #e9ecef;
    transform: rotate(45deg);
}

.ch-basic-section-timeline-item-dot {
    position: absolute;
    top: 20px;
    left: 50%;
    width: 16px;
    height: 16px;
    background-color: var(--primary-color);
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.ch-basic-section-timeline-item-date {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 8px;
}

.ch-basic-section-timeline-item-title {
    font-size: 17px;
    margin: 0 0 10px 0;
    color: #333;
    font-weight: 600;
}

.ch-basic-section-timeline-item-description {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-color);
}

/* Accordion/FAQ Section */
.ch-basic-section-faq {
    border-radius: 8px;
    padding: 30px;
    transition: all 0.3s ease;
}

.ch-basic-section-faq-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.ch-basic-section-faq-title {
    font-size: 22px;
    margin: 0 0 30px 0;
    color: var(--primary-color);
    font-weight: 600;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

.ch-basic-section-faq-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 3px;
}

.ch-basic-section-faq-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ch-basic-section-faq-item {
    border: 1px solid #e9ecef;
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.ch-basic-section-faq-item:hover {
    border-color: var(--primary-color);
}

.ch-basic-section-faq-question {
    background-color: #fff;
    padding: 15px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--primary-color);
    position: relative;
    transition: all 0.3s ease;
}

.ch-basic-section-faq-question:after {
    content: '+';
    font-size: 20px;
    color: var(--primary-color);
}

.ch-basic-section-faq-item.active .ch-basic-section-faq-question:after {
    content: '-';
}

.ch-basic-section-faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.ch-basic-section-faq-item.active .ch-basic-section-faq-answer {
    padding: 15px 20px;
    background: white;
    max-height: 500px;
}

.ch-basic-section-faq-answer p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-color);
}

/* Tabbed Content Section */
.ch-basic-section-tabs {
    border-radius: 8px;
    padding: 30px;
    transition: all 0.3s ease;
}

.ch-basic-section-tabs-container {
    width: 100%;
}

.ch-basic-section-tabs-title {
    font-size: 22px;
    margin: 0 0 30px 0;
    color: var(--primary-color);
    font-weight: 600;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

.ch-basic-section-tabs-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 3px;
}

.ch-basic-section-tabs-nav {
    display: flex;
    border-bottom: 1px solid #e9ecef;
    margin-bottom: 20px;
}

.ch-basic-section-tabs-nav-item {
    padding: 12px 20px;
    cursor: pointer;
    color: var(--text-color);
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
}

.ch-basic-section-tabs-nav-item.active,
.ch-basic-section-tabs-nav-item:hover {
    color: var(--primary-color);
}

.ch-basic-section-tabs-nav-item.active:after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
}

.ch-basic-section-tabs-content {
    position: relative;
    overflow: hidden;
}

.ch-basic-section-tabs-pane {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    overflow: hidden;
    transition: opacity 0.3s ease;
}

.ch-basic-section-tabs-pane.active {
    opacity: 1;
    position: relative;
    height: auto;
    overflow: visible;
}

.ch-basic-section-tabs-pane-content {
    padding: 15px 0;
}

.ch-basic-section-tabs-pane-title {
    font-size: 18px;
    margin: 0 0 15px 0;
    color: var(--primary-color);
    font-weight: 600;
}

.ch-basic-section-tabs-pane-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-color);
}

/* Testimonials Section */
.ch-basic-section-testimonials {
    border-radius: 8px;
    padding: 30px;
    transition: all 0.3s ease;
}

.ch-basic-section-testimonials-container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.ch-basic-section-testimonials-title {
    font-size: 22px;
    margin: 0 0 30px 0;
    color: var(--primary-color);
    font-weight: 600;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

.ch-basic-section-testimonials-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 3px;
}

.ch-basic-section-testimonials-slider {
    position: relative;
    overflow: hidden;
}

.ch-basic-section-testimonials-items {
    display: flex;
    transition: transform 0.5s ease;
}

.ch-basic-section-testimonial {
    min-width: 100%;
    padding: 20px;
    box-sizing: border-box;
}

.ch-basic-section-testimonial-content {
    background-color: #fff;
    border-radius: 8px;
    padding: 25px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.ch-basic-section-testimonial-content:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 30px;
    width: 20px;
    height: 20px;
    background-color: #fff;
    transform: rotate(45deg);
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.02);
}

.ch-basic-section-testimonial-text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-color);
    position: relative;
    padding-top: 10px;
}

.ch-basic-section-testimonial-text:before {
    content: '"';
    font-size: 60px;
    color: rgba(var(--primary-color-rgb), 0.1);
    position: absolute;
    top: -20px;
    left: -5px;
    font-family: Georgia, serif;
}

.ch-basic-section-testimonial-author {
    display: flex;
    align-items: center;
    padding-left: 20px;
}

.ch-basic-section-testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.ch-basic-section-testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ch-basic-section-testimonial-info {
    display: flex;
    flex-direction: column;
}

.ch-basic-section-testimonial-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 2px;
}

.ch-basic-section-testimonial-role {
    font-size: 13px;
    color: var(--text-color);
}

.ch-basic-section-testimonials-controls {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 10px;
}

.ch-basic-section-testimonials-button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.ch-basic-section-testimonials-button:hover {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

/* Pricing Table Section */
.ch-basic-section-pricing {
    border-radius: 8px;
    padding: 30px;
    transition: all 0.3s ease;
}

.ch-basic-section-pricing-container {
    width: 100%;
}

.ch-basic-section-pricing-title {
    font-size: 22px;
    margin: 0 0 30px 0;
    color: var(--primary-color);
    font-weight: 600;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

.ch-basic-section-pricing-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 3px;
}

.ch-basic-section-pricing-description {
    text-align: center;
    margin-bottom: 30px;
    color: var(--text-color);
    font-size: 15px;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.ch-basic-section-pricing-plans {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.ch-basic-section-pricing-plan {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.ch-basic-section-pricing-plan.featured {
    background-color: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-10px);
}

.ch-basic-section-pricing-plan.featured:before {
    content: 'Popular';
    position: absolute;
    top: 15px;
    right: -30px;
    background-color: var(--primary-color);
    color: #fff;
    padding: 5px 30px;
    transform: rotate(45deg);
    font-size: 12px;
    font-weight: 600;
}

.ch-basic-section-pricing-plan:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.ch-basic-section-pricing-plan.featured:hover {
    transform: translateY(-15px);
}

.ch-basic-section-pricing-plan-name {
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 600;
    text-align: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e9ecef;
}

.ch-basic-section-pricing-plan-price {
    text-align: center;
    margin-bottom: 20px;
}

.ch-basic-section-pricing-plan-amount {
    font-size: 36px;
    font-weight: 700;
    color: #333;
}

.ch-basic-section-pricing-plan-period {
    font-size: 14px;
    color: var(--text-color);
}

.ch-basic-section-pricing-plan-features {
    list-style-type: none;
    padding: 0;
    margin: 0 0 30px;
}

.ch-basic-section-pricing-plan-feature {
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-color);
    border-bottom: 1px dotted #e9ecef;
    position: relative;
    padding-left: 25px;
}

.ch-basic-section-pricing-plan-feature:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.ch-basic-section-pricing-plan-feature.disabled {
    color: #aaa;
    text-decoration: line-through;
}

.ch-basic-section-pricing-plan-feature.disabled:before {
    content: '×';
    color: #aaa;
}

.ch-basic-section-pricing-plan-button {
    display: block;
    text-align: center;
    padding: 12px 20px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.ch-basic-section-pricing-plan-button:hover {
    color: #fff;
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

/* Media queries for additional section layouts */
@media (max-width: 992px) {
    .ch-basic-section-grid-items {
        grid-template-columns: repeat(2, 1fr);
    }

    .ch-basic-section-pricing-plans {
        flex-direction: column;
        align-items: center;
    }

    .ch-basic-section-pricing-plan {
        min-width: 280px;
        max-width: 400px;
    }

    .ch-basic-section-pricing-plan.featured {
        transform: scale(1.05);
    }

    .ch-basic-section-pricing-plan.featured:hover {
        transform: scale(1.05) translateY(-5px);
    }
}

@media (max-width: 768px) {
    .ch-basic-section-timeline-items:before {
        left: 30px;
    }

    .ch-basic-section-timeline-item:nth-child(odd),
    .ch-basic-section-timeline-item:nth-child(even) {
        padding-left: 70px;
        padding-right: 0;
    }

    .ch-basic-section-timeline-item-dot {
        left: 30px;
    }

    .ch-basic-section-timeline-item:nth-child(odd) .ch-basic-section-timeline-item-content:after,
    .ch-basic-section-timeline-item:nth-child(even) .ch-basic-section-timeline-item-content:after {
        display: none;
    }

    .ch-basic-section-tabs-nav {
        flex-wrap: wrap;
    }
}

@media (max-width: 576px) {
    .ch-basic-section-grid-items {
        grid-template-columns: 1fr;
    }

    .ch-basic-section-faq-question {
        font-size: 14px;
        padding: 12px 15px;
    }

    .ch-basic-section-testimonial-content {
        padding: 20px;
    }

    .ch-basic-section-testimonial-text {
        font-size: 14px;
    }

    .ch-basic-section-testimonial-avatar {
        width: 40px;
        height: 40px;
    }

    .ch-basic-section-testimonial-name {
        font-size: 14px;
    }

    .ch-basic-section-testimonial-role {
        font-size: 12px;
    }

    .ch-basic-section-grid,
    .ch-basic-section-timeline,
    .ch-basic-section-faq,
    .ch-basic-section-tabs,
    .ch-basic-section-testimonials,
    .ch-basic-section-pricing {
        padding: 20px;
    }
}

/* ===== Additional New Specialized Sections ===== */

/* Contact Form Section */
.ch-basic-section-contact {
    background-color: #fff;
    border-radius: 8px;
    padding: 40px;
    transition: all 0.3s ease;
}

.ch-basic-section-contact-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.ch-basic-section-contact-title {
    font-size: 22px;
    margin: 0 0 20px 0;
    color: var(--primary-color);
    font-weight: 600;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

.ch-basic-section-contact-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 3px;
}

.ch-basic-section-contact-description {
    text-align: center;
    margin-bottom: 30px;
    color: var(--text-color);
    font-size: 15px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.ch-basic-section-contact-form {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 30px;
    border: 1px solid #eee;
}

.ch-basic-section-contact-form-group {
    margin-bottom: 20px;
}

.ch-basic-section-contact-label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: #333;
    font-size: 14px;
}

.ch-basic-section-contact-input,
.ch-basic-section-contact-textarea,
.ch-basic-section-contact-select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.ch-basic-section-contact-input:focus,
.ch-basic-section-contact-textarea:focus,
.ch-basic-section-contact-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(var(--primary-color-rgb), 0.1);
    outline: none;
}

.ch-basic-section-contact-textarea {
    min-height: 120px;
    resize: vertical;
}

.ch-basic-section-contact-button {
    display: inline-block;
    padding: 12px 25px;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
}

.ch-basic-section-contact-button:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.ch-basic-section-contact-info {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.ch-basic-section-contact-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ch-basic-section-contact-info-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(var(--primary-color-rgb), 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 18px;
}

.ch-basic-section-contact-info-text {
    font-size: 14px;
    color: var(--text-color);
}

/* Video Section */
.ch-basic-section-video {
    border-radius: 8px;
    padding: 40px;
    transition: all 0.3s ease;
}

.ch-basic-section-video-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.ch-basic-section-video-title {
    font-size: 22px;
    margin: 0 0 20px 0;
    color: var(--primary-color);
    font-weight: 600;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

.ch-basic-section-video-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 3px;
}

.ch-basic-section-video-description {
    text-align: center;
    margin-bottom: 30px;
    color: var(--text-color);
    font-size: 15px;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.ch-basic-section-video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.ch-basic-section-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.ch-basic-section-video-caption {
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
    color: var(--text-color);
    font-style: italic;
}

/* Partners Section */
.ch-basic-section-partners {
    border-radius: 8px;
    padding: 40px;
    transition: all 0.3s ease;
}

.ch-basic-section-partners-container {
    width: 100%;
}

.ch-basic-section-partners-title {
    font-size: 22px;
    margin: 0 0 20px 0;
    color: var(--primary-color);
    font-weight: 600;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

.ch-basic-section-partners-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 3px;
}

.ch-basic-section-partners-description {
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-color);
    font-size: 15px;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.ch-basic-section-partners-logo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    align-items: center;
}

.ch-basic-section-partners-logo {
    text-align: center;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    transition: all 0.3s ease;
    background-color: #fff;
    filter: grayscale(100%);
    opacity: 0.7;
}

.ch-basic-section-partners-logo:hover {
    filter: grayscale(0);
    opacity: 1;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    border-color: var(--primary-color);
}

.ch-basic-section-partners-logo img {
    max-width: 100%;
    max-height: 60px;
    display: inline-block;
}

/* Blog Highlights Section */
.ch-basic-section-blog {
    border-radius: 8px;
    padding: 40px;
    transition: all 0.3s ease;
}

.ch-basic-section-blog-container {
    width: 100%;
}

.ch-basic-section-blog-title {
    font-size: 22px;
    margin: 0 0 20px 0;
    color: var(--primary-color);
    font-weight: 600;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

.ch-basic-section-blog-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 3px;
}

.ch-basic-section-blog-description {
    text-align: center;
    margin-bottom: 30px;
    color: var(--text-color);
    font-size: 15px;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.ch-basic-section-blog-posts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.ch-basic-section-blog-post {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    background-color: #fff;
    border: 1px solid #eee;
}

.ch-basic-section-blog-post:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.ch-basic-section-blog-post-image {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 60%; /* 5:3 aspect ratio */
    overflow: hidden;
}

.ch-basic-section-blog-post-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ch-basic-section-blog-post:hover .ch-basic-section-blog-post-image img {
    transform: scale(1.1);
}

.ch-basic-section-blog-post-content {
    padding: 20px;
}

.ch-basic-section-blog-post-date {
    font-size: 12px;
    color: #666;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.ch-basic-section-blog-post-date i {
    margin-right: 5px;
}

.ch-basic-section-blog-post-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-color);
}

.ch-basic-section-blog-post-excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 15px;
}

.ch-basic-section-blog-post-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    position: relative;
    display: inline-block;
}

.ch-basic-section-blog-post-link:after {
    content: '→';
    margin-left: 5px;
    transition: margin-left 0.3s ease;
}

.ch-basic-section-blog-post-link:hover {
    color: var(--primary-color);
}

.ch-basic-section-blog-post-link:hover:after {
    margin-left: 10px;
}

.ch-basic-section-blog-more {
    text-align: center;
    margin-top: 30px;
}

.ch-basic-section-blog-more-link {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.ch-basic-section-blog-more-link:hover {
    color: #fff;
    background-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(var(--primary-color-rgb), 0.3);
}

/* Compare Section - Plan Comparison Table */
.ch-basic-section-compare {
    border-radius: 8px;
    padding: 40px;
    transition: all 0.3s ease;
}

.ch-basic-section-compare-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.ch-basic-section-compare-title {
    font-size: 24px;
    margin: 0 0 20px 0;
    color: var(--primary-color);
    font-weight: 600;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.ch-basic-section-compare-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 3px;
}

.ch-basic-section-compare-description {
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-color);
    font-size: 15px;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.ch-basic-section-compare-table-wrapper {
    overflow-x: auto;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.ch-basic-section-compare-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    font-size: 14px;
    min-width: 600px;
}

.ch-basic-section-compare-table thead th {
    background-color: #f8f9fa;
    color: var(--text-color);
    font-weight: 600;
    padding: 20px 15px;
    text-align: center;
    border-bottom: 2px solid #e9ecef;
    font-size: 15px;
    position: relative;
}

.ch-basic-section-compare-table thead th.featured {
    background-color: var(--primary-color);
    color: #fff;
    position: relative;
}

.ch-basic-section-compare-table thead th.featured:before {
    content: '人気';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ff6b35;
    color: #fff;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
}

.ch-basic-section-compare-table tbody td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #e9ecef;
    vertical-align: middle;
    transition: background-color 0.2s ease;
}

.ch-basic-section-compare-table tbody tr:hover td {
    background-color: #f8f9fa;
}

.ch-basic-section-compare-table tbody td.featured {
    background-color: rgba(var(--primary-color-rgb), 0.02);
    border-left: 2px solid var(--primary-color);
    border-right: 2px solid var(--primary-color);
}

.ch-basic-section-compare-table tbody tr:hover td.featured {
    background-color: rgba(var(--primary-color-rgb), 0.05);
}

.ch-basic-section-compare-table tbody td:first-child {
    text-align: left;
    font-weight: 500;
    color: var(--text-color);
    background-color: #fafbfc;
}

.ch-basic-section-compare-table tbody tr:hover td:first-child {
    background-color: #f1f3f4;
}

.ch-basic-section-compare-check {
    color: #28a745;
    font-weight: 600;
    font-size: 16px;
}

.ch-basic-section-compare-x {
    color: #dc3545;
    font-weight: 600;
    font-size: 16px;
}

.ch-basic-section-compare-partial {
    color: #ffc107;
    font-weight: 600;
    font-size: 16px;
}

.ch-basic-section-compare-buttons {
    text-align: center;
    margin-top: 30px;
}

.ch-basic-section-compare-button {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.ch-basic-section-compare-button.secondary {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.ch-basic-section-compare-button.secondary:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(var(--primary-color-rgb), 0.3);
}

/* Responsive Design for Compare Table */
@media (max-width: 768px) {
    .ch-basic-section-compare {
        padding: 30px 20px;
    }
    
    .ch-basic-section-compare-title {
        font-size: 20px;
    }
    
    .ch-basic-section-compare-description {
        font-size: 14px;
        margin-bottom: 30px;
    }
    
    .ch-basic-section-compare-table {
        font-size: 13px;
        min-width: 500px;
    }
    
    .ch-basic-section-compare-table thead th {
        padding: 15px 10px;
        font-size: 14px;
    }
    
    .ch-basic-section-compare-table tbody td {
        padding: 12px 8px;
    }
    
    .ch-basic-section-compare-table thead th.featured:before {
        font-size: 10px;
        padding: 3px 8px;
    }
}

@media (max-width: 576px) {
    .ch-basic-section-compare {
        padding: 25px 15px;
    }
    
    .ch-basic-section-compare-title {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .ch-basic-section-compare-description {
        font-size: 13px;
        margin-bottom: 25px;
    }
    
    .ch-basic-section-compare-table {
        font-size: 12px;
        min-width: 450px;
    }
    
    .ch-basic-section-compare-table thead th {
        padding: 12px 8px;
        font-size: 13px;
    }
    
    .ch-basic-section-compare-table tbody td {
        padding: 10px 6px;
    }
    
    .ch-basic-section-compare-button {
        padding: 10px 25px;
        font-size: 13px;
    }
}

/* Stats Section */
.ch-basic-section-stats {
    border-radius: 8px;
    padding: 40px;
    transition: all 0.3s ease;
}

.ch-basic-section-stats-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.ch-basic-section-stats-title {
    font-size: 24px;
    margin: 0 0 20px 0;
    color: var(--primary-color);
    font-weight: 600;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.ch-basic-section-stats-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 3px;
}

.ch-basic-section-stats-description {
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-color);
    font-size: 15px;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.ch-basic-section-stats-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    align-items: stretch;
}

.ch-basic-section-stats-item {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ch-basic-section-stats-item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color, #4a90e2));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.ch-basic-section-stats-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
    background-color: #fff;
}

.ch-basic-section-stats-item:hover:before {
    transform: scaleX(1);
}

.ch-basic-section-stats-item-icon {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.ch-basic-section-stats-item:hover .ch-basic-section-stats-item-icon {
    transform: scale(1.1);
    color: var(--secondary-color, #4a90e2);
}

.ch-basic-section-stats-item-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    line-height: 1;
    transition: all 0.3s ease;
}

.ch-basic-section-stats-item:hover .ch-basic-section-stats-item-number {
    color: var(--secondary-color, #4a90e2);
}

.ch-basic-section-stats-item-label {
    font-size: 14px;
    color: var(--text-color);
    font-weight: 500;
    line-height: 1.4;
}

/* Responsive Design for Stats Section */
@media (max-width: 992px) {
    .ch-basic-section-stats-items {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .ch-basic-section-stats-item-number {
        font-size: 36px;
    }
    
    .ch-basic-section-stats-item-icon {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .ch-basic-section-stats {
        padding: 30px 20px;
    }
    
    .ch-basic-section-stats-title {
        font-size: 20px;
    }
    
    .ch-basic-section-stats-description {
        font-size: 14px;
        margin-bottom: 30px;
    }
    
    .ch-basic-section-stats-items {
        gap: 20px;
    }
    
    .ch-basic-section-stats-item {
        padding: 25px 15px;
    }
    
    .ch-basic-section-stats-item-number {
        font-size: 32px;
    }
    
    .ch-basic-section-stats-item-icon {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .ch-basic-section-stats-item-label {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .ch-basic-section-stats {
        padding: 25px 15px;
    }
    
    .ch-basic-section-stats-items {
        grid-template-columns: 1fr;
        gap: 15px;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .ch-basic-section-stats-title {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .ch-basic-section-stats-description {
        font-size: 13px;
        margin-bottom: 25px;
    }
    
    .ch-basic-section-stats-item {
        padding: 20px 15px;
    }
    
    .ch-basic-section-stats-item-number {
        font-size: 28px;
    }
    
    .ch-basic-section-stats-item-icon {
        font-size: 24px;
        margin-bottom: 12px;
    }
    
    .ch-basic-section-stats-item-label {
        font-size: 12px;
    }
}

/* Team Section */
.ch-basic-section-team {
    border-radius: 8px;
    padding: 40px;
    transition: all 0.3s ease;
}

.ch-basic-section-team-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.ch-basic-section-team-title {
    font-size: 24px;
    margin: 0 0 20px 0;
    color: var(--primary-color);
    font-weight: 600;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.ch-basic-section-team-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 3px;
}

.ch-basic-section-team-description {
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-color);
    font-size: 15px;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.ch-basic-section-team-members {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    align-items: stretch;
}

.ch-basic-section-team-member {
    background-color: #fff;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ch-basic-section-team-member:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color, #4a90e2));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.ch-basic-section-team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
    background-color: #fff;
}

.ch-basic-section-team-member:hover:before {
    transform: scaleX(1);
}

.ch-basic-section-team-member-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    border: 4px solid #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.ch-basic-section-team-member:hover .ch-basic-section-team-member-image {
    transform: scale(1.05);
    border-color: var(--primary-color);
}

.ch-basic-section-team-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.ch-basic-section-team-member:hover .ch-basic-section-team-member-image img {
    transform: scale(1.1);
}

.ch-basic-section-team-member-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0 0 8px 0;
    transition: all 0.3s ease;
}

.ch-basic-section-team-member:hover .ch-basic-section-team-member-name {
    color: var(--secondary-color, #4a90e2);
}

.ch-basic-section-team-member-position {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 15px;
    padding: 4px 12px;
    background-color: rgba(var(--primary-color-rgb), 0.1);
    border-radius: 20px;
    display: inline-block;
    transition: all 0.3s ease;
}

.ch-basic-section-team-member:hover .ch-basic-section-team-member-position {
    background-color: var(--primary-color);
    color: #fff;
}

.ch-basic-section-team-member-bio {
    font-size: 13px;
    color: var(--text-color);
    line-height: 1.5;
    margin-bottom: 20px;
    text-align: left;
    padding: 0 5px;
}

.ch-basic-section-team-member-social {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: auto;
}

.ch-basic-section-team-member-social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.ch-basic-section-team-member-social-link:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(var(--primary-color-rgb), 0.3);
}

.ch-basic-section-team-member-social-link:nth-child(1):hover {
    background-color: #1da1f2; /* Twitter blue */
}

.ch-basic-section-team-member-social-link:nth-child(2):hover {
    background-color: #0077b5; /* LinkedIn blue */
}

.ch-basic-section-team-member-social-link:nth-child(3):hover {
    background-color: #ea4335; /* Email red */
}

/* Responsive Design for Team Section */
@media (max-width: 992px) {
    .ch-basic-section-team-members {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .ch-basic-section-team-member-image {
        width: 100px;
        height: 100px;
    }
    
    .ch-basic-section-team-member-name {
        font-size: 16px;
    }
    
    .ch-basic-section-team-member-bio {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .ch-basic-section-team {
        padding: 30px 20px;
    }
    
    .ch-basic-section-team-title {
        font-size: 20px;
    }
    
    .ch-basic-section-team-description {
        font-size: 14px;
        margin-bottom: 30px;
    }
    
    .ch-basic-section-team-members {
        gap: 20px;
    }
    
    .ch-basic-section-team-member {
        padding: 25px 15px;
    }
    
    .ch-basic-section-team-member-image {
        width: 90px;
        height: 90px;
        margin-bottom: 15px;
    }
    
    .ch-basic-section-team-member-name {
        font-size: 15px;
    }
    
    .ch-basic-section-team-member-position {
        font-size: 12px;
        padding: 3px 10px;
        margin-bottom: 12px;
    }
    
    .ch-basic-section-team-member-bio {
        font-size: 11px;
        margin-bottom: 15px;
    }
    
    .ch-basic-section-team-member-social-link {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .ch-basic-section-team {
        padding: 25px 15px;
    }
    
    .ch-basic-section-team-members {
        grid-template-columns: 1fr;
        gap: 15px;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .ch-basic-section-team-title {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .ch-basic-section-team-description {
        font-size: 13px;
        margin-bottom: 25px;
    }
    
    .ch-basic-section-team-member {
        padding: 20px 15px;
    }
    
    .ch-basic-section-team-member-image {
        width: 80px;
        height: 80px;
        margin-bottom: 12px;
    }
    
    .ch-basic-section-team-member-name {
        font-size: 14px;
    }
    
    .ch-basic-section-team-member-position {
        font-size: 11px;
        padding: 2px 8px;
        margin-bottom: 10px;
    }
    
    .ch-basic-section-team-member-bio {
        font-size: 10px;
        margin-bottom: 12px;
        text-align: center;
    }
    
    .ch-basic-section-team-member-social-link {
        width: 28px;
        height: 28px;
        font-size: 11px;
    }
}

/* Steps Section */
.ch-basic-section-steps {
    border-radius: 8px;
    padding: 40px;
    transition: all 0.3s ease;
}

.ch-basic-section-steps-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.ch-basic-section-steps-title {
    font-size: 24px;
    margin: 0 0 20px 0;
    color: var(--primary-color);
    font-weight: 600;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.ch-basic-section-steps-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 3px;
}

.ch-basic-section-steps-description {
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-color);
    font-size: 15px;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.ch-basic-section-steps-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

.ch-basic-section-steps-items:before {
    content: '';
    position: absolute;
    top: 60px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background-color: #e9ecef;
    z-index: 1;
}

.ch-basic-section-steps-item {
    position: relative;
    text-align: center;
    z-index: 2;
}

.ch-basic-section-steps-item-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
    position: relative;
    z-index: 3;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(var(--primary-color-rgb), 0.3);
}

.ch-basic-section-steps-item:hover .ch-basic-section-steps-item-number {
    transform: scale(1.1);
    background-color: var(--secondary-color, #4a90e2);
    box-shadow: 0 8px 25px rgba(var(--primary-color-rgb), 0.4);
}

.ch-basic-section-steps-item-content {
    background-color: #fff;
    border-radius: 12px;
    padding: 25px 20px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.ch-basic-section-steps-item-content:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color, #4a90e2));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.ch-basic-section-steps-item:hover .ch-basic-section-steps-item-content {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
    background-color: #fff;
}

.ch-basic-section-steps-item:hover .ch-basic-section-steps-item-content:before {
    transform: scaleX(1);
}

.ch-basic-section-steps-item-icon {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.ch-basic-section-steps-item:hover .ch-basic-section-steps-item-icon {
    transform: scale(1.1);
    color: var(--secondary-color, #4a90e2);
}

.ch-basic-section-steps-item-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0 0 15px 0;
    transition: all 0.3s ease;
}

.ch-basic-section-steps-item:hover .ch-basic-section-steps-item-title {
    color: var(--secondary-color, #4a90e2);
}

.ch-basic-section-steps-item-description {
    font-size: 13px;
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
}

/* Alternative layout - Vertical timeline for smaller screens */
@media (max-width: 992px) {
    .ch-basic-section-steps-items {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .ch-basic-section-steps-items:before,
    .ch-basic-section-steps-item:after {
        display: none;
    }
    
    .ch-basic-section-steps-item-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .ch-basic-section-steps-item-icon {
        font-size: 32px;
        margin-bottom: 12px;
    }
    
    .ch-basic-section-steps-item-title {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .ch-basic-section-steps-item-description {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .ch-basic-section-steps {
        padding: 30px 20px;
    }
    
    .ch-basic-section-steps-title {
        font-size: 20px;
    }
    
    .ch-basic-section-steps-description {
        font-size: 14px;
        margin-bottom: 40px;
    }
    
    .ch-basic-section-steps-items {
        gap: 20px;
    }
    
    .ch-basic-section-steps-item-content {
        padding: 20px 15px;
    }
    
    .ch-basic-section-steps-item-number {
        width: 45px;
        height: 45px;
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .ch-basic-section-steps-item-icon {
        font-size: 28px;
        margin-bottom: 10px;
    }
    
    .ch-basic-section-steps-item-title {
        font-size: 15px;
        margin-bottom: 10px;
    }
    
    .ch-basic-section-steps-item-description {
        font-size: 11px;
    }
}

@media (max-width: 576px) {
    .ch-basic-section-steps {
        padding: 25px 15px;
    }
    
    .ch-basic-section-steps-items {
        grid-template-columns: 1fr;
        gap: 15px;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .ch-basic-section-steps-title {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .ch-basic-section-steps-description {
        font-size: 13px;
        margin-bottom: 30px;
    }
    
    .ch-basic-section-steps-item-content {
        padding: 18px 12px;
    }
    
    .ch-basic-section-steps-item-number {
        width: 40px;
        height: 40px;
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .ch-basic-section-steps-item-icon {
        font-size: 24px;
        margin-bottom: 8px;
    }
    
    .ch-basic-section-steps-item-title {
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    .ch-basic-section-steps-item-description {
        font-size: 10px;
        line-height: 1.5;
    }
}

/* Special animation for step numbers */
.ch-basic-section-steps-item-number {
    animation: pulse-subtle 2s infinite;
}

@keyframes pulse-subtle {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(var(--primary-color-rgb), 0.3);
    }
    50% {
        box-shadow: 0 4px 20px rgba(var(--primary-color-rgb), 0.5);
    }
}

.ch-basic-section-steps-item:hover .ch-basic-section-steps-item-number {
    animation: none;
}

.ch-basic-section-steps-item:not(:last-child):after {
    content: '';
    position: absolute;
    top: 60px;
    right: -15px;
    width: 30px;
    height: 2px;
    background-color: #e9ecef;
    z-index: 1;
}

.ch-basic-section-steps-item:first-child:after,
.ch-basic-section-steps-item:nth-child(2):after,
.ch-basic-section-steps-item:nth-child(3):after {
    background-color: var(--primary-color);
}

/* ===== IMAGE CARDS SECTION ===== */
.ch-basic-section-image-cards {
    padding: 60px 0;
    margin: 20px 0;
}

.ch-basic-section-image-cards-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.ch-basic-section-image-cards-title {
    font-size: 32px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.ch-basic-section-image-cards-title:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
    border-radius: 1px;
}

.ch-basic-section-image-cards-description {
    font-size: 16px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.ch-basic-section-image-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.ch-basic-section-image-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.ch-basic-section-image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.ch-basic-section-image-card-image {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.ch-basic-section-image-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.ch-basic-section-image-card:hover .ch-basic-section-image-card-image img {
    transform: scale(1.05);
}

.ch-basic-section-image-card-content {
    padding: 25px 20px;
    text-align: left;
}

.ch-basic-section-image-card-title {
    font-size: 20px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 12px;
    line-height: 1.3;
}

.ch-basic-section-image-card-text {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 18px;
}

.ch-basic-section-image-card-link {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.ch-basic-section-image-card-link:after {
    content: '→';
    margin-left: 6px;
    transition: transform 0.3s ease;
}

.ch-basic-section-image-card-link:hover {
    color: #333333;
}

.ch-basic-section-image-card-link:hover:after {
    transform: translateX(3px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .ch-basic-section-image-cards {
        padding: 50px 0;
    }
    
    .ch-basic-section-image-cards-title {
        font-size: 28px;
    }
    
    .ch-basic-section-image-cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .ch-basic-section-image-cards {
        padding: 40px 0;
        margin: 15px 0;
    }
    
    .ch-basic-section-image-cards-container {
        padding: 0 15px;
    }
    
    .ch-basic-section-image-cards-title {
        font-size: 24px;
    }
    
    .ch-basic-section-image-cards-description {
        font-size: 14px;
        margin-bottom: 30px;
    }
    
    .ch-basic-section-image-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .ch-basic-section-image-card-content {
        padding: 20px 15px;
    }
    
    .ch-basic-section-image-card-title {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .ch-basic-section-image-cards {
        padding: 30px 0;
    }
    
    .ch-basic-section-image-cards-title {
        font-size: 22px;
    }
    
    .ch-basic-section-image-card-image {
        height: 180px;
    }
    
    .ch-basic-section-image-card-content {
        padding: 18px 12px;
    }
}

/* ===== CALLOUT SECTION ===== */
.ch-basic-section-callout {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2c5aa0 100%);
    padding: 50px 0;
    margin: 20px 0;
    position: relative;
    overflow: hidden;
}

.ch-basic-section-callout:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="20" cy="80" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.ch-basic-section-callout-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.ch-basic-section-callout-content {
    flex: 1;
    max-width: 700px;
}

.ch-basic-section-callout-title {
    font-size: 28px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.3;
}

.ch-basic-section-callout-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 0;
}

.ch-basic-section-callout-actions {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.ch-basic-section-callout-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-width: 120px;
}

.ch-basic-section-callout-button.secondary {
    background-color: #ffffff;
    color: var(--primary-color);
    border: 2px solid #ffffff;
}

.ch-basic-section-callout-button.secondary:hover {
    background-color: transparent;
    color: #ffffff;
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.ch-basic-section-callout-button.primary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.ch-basic-section-callout-button.primary:hover {
    background-color: #ffffff;
    color: var(--primary-color);
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 992px) {
    .ch-basic-section-callout {
        padding: 40px 0;
    }
    
    .ch-basic-section-callout-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .ch-basic-section-callout-title {
        font-size: 24px;
    }
    
    .ch-basic-section-callout-actions {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .ch-basic-section-callout {
        padding: 35px 0;
        margin: 15px 0;
    }
    
    .ch-basic-section-callout-container {
        padding: 0 15px;
        gap: 25px;
    }
    
    .ch-basic-section-callout-title {
        font-size: 22px;
    }
    
    .ch-basic-section-callout-text {
        font-size: 14px;
    }
    
    .ch-basic-section-callout-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .ch-basic-section-callout-button {
        padding: 14px 20px;
        font-size: 14px;
        min-width: auto;
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 576px) {
    .ch-basic-section-callout {
        padding: 30px 0;
    }
    
    .ch-basic-section-callout-container {
        padding: 0 12px;
    }
    
    .ch-basic-section-callout-title {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .ch-basic-section-callout-text {
        font-size: 13px;
    }
    
    .ch-basic-section-callout-button {
        padding: 12px 18px;
        font-size: 13px;
    }
}