/* Main Templates Styles */
.cpm-landing-page,
.cpm-full-width-page,
.cpm-portfolio-page,
.cpm-contact-page,
.cpm-services-page {
    margin: 0;
    padding: 0;
}
.cpm-anniversary-page {
    background-color: #000000;
    color: #ffffff;
}

.cpm-anniversary-stories__mark {
    display: block;
    width: 351px;
    margin: 12px auto 32px;
}
.page-template-20th-anniversary-banesco-moments .cpm-moments-title {
    font-size: 30px;
    line-height: 1.15;
}
.page-template-20th-anniversary-banesco-stories {
    background-color: #000000;
}

.overflow-x-hidden {
    overflow-x: hidden;
}

/* Container Styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-fluid {
    width: 100%;
    padding: 0 20px;
}

/* Button Styles */
.cpm-btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.cpm-btn-secondary {
    background-color: transparent;
    color: #0073aa;
    border-color: #0073aa;
}

.cpm-btn-secondary:hover {
    background-color: #0073aa;
    color: white;
}

/* Section Spacing */
.cpm-hero-section,
.cpm-features-section,
.cpm-contact-section,
.cpm-page-content {
    padding: 60px 0;
}

/* Typography */
.cpm-hero-title,
.cpm-page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cpm-hero-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Hero Actions */
.cpm-hero-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Features Grid */
.cpm-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.cpm-feature-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: 10px;
    background: #f8f9fa;
    transition: transform 0.3s ease;
}

.cpm-feature-item:hover {
    transform: translateY(-5px);
}

.cpm-feature-icon {
    font-size: 3rem;
    color: #0073aa;
    margin-bottom: 20px;
}

.cpm-feature-icon i {
    font-size: 3rem;
}

/* Comments Section */
.cpm-comments-section {
    background: #f8f9fa;
    border-top: 1px solid #dee2e6;
}
.ghostBtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 220px;
    padding: 18px 22px;
    border-radius: 999px;
	border: 1px solid #727272;
    font-weight: 600;
    font-size: 0.9375rem;
    line-height: 1;
    text-decoration: none;
	background: transparent;
	color: #ffffff;
    transition: all 0.2s ease;
}

.ghostBtn:hover,
.ghostBtn:focus-visible {
	background: #ffffff;
	color: #000000;
}

.cpm-btn-primary {
    background-color: #058167;
    border-color: transparent;
    color: white;
    padding: 16px 24px;
    padding-bottom: 12px;
    border-radius: 999px;
    font-weight: 500;
    font-size: 0.9375rem;
    line-height: 1.1875rem;
    letter-spacing: 0%;
    text-align: center;
    text-decoration: none;
}

.cpm-btn-primary:hover,
.cpm-btn-primary:focus {
    background-color: #009c64;
    border-color: #009c64;
    color: #ffffff;
}
/* Responsive Design */
@media (max-width: 768px) {
    .cpm-hero-title,
    .cpm-page-title {
        font-size: 2rem;
    }
    
    .cpm-hero-description {
        font-size: 1rem;
    }
    
    .cpm-hero-actions {
        justify-content: center;
    }
    
    .cpm-features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cpm-hero-section,
    .cpm-features-section,
    .cpm-contact-section,
    .cpm-page-content {
        padding: 40px 0;
    }
}