/* content-page.css */

/* Base Layout */
.mc-everything {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Page Header */
.page-header {
    text-align: center;
    padding: 40px 0 20px;
    margin-bottom: 40px;
    border-bottom: 1px solid #eaeaea;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #333;
}

.subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Section Styling */
section {
    margin-bottom: 80px;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #333;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.section-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Hero Section */
.hero-section {
    margin-bottom: 80px;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-text {
    flex: 1;
}

.hero-text h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #333;
}

.hero-text p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    
}

/* Audience Section */
.audience-section {
    background-color: #f9f9f9;
    padding: 50px 30px;
    border-radius: 8px;
}

/* Process Section */
.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.step-card {
    background: white;
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

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

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #6e8efb;
    color: white;
    border-radius: 50%;
    font-weight: bold;
    margin-bottom: 15px;
}

.step-card:nth-child(2) .step-number {
    background-color: #a777e3;
}

.step-card:nth-child(3) .step-number {
    background-color: #6e8efb;
}

.step-card h3 {
    margin-bottom: 15px;
    color: #333;
}

.step-card p {
    line-height: 1.6;
    color: #555;
}

/* Privacy Section */
.privacy-section {
    background-color: #6e8efb;
    color: white;
    padding: 50px 30px;
    border-radius: 8px;
    text-align: center;
}

.privacy-section h2 {
    color: white;
}

/* Presentation Section */
.presentation-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.presentation-text {
    flex: 1;
}

.presentation-text h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #333;
}

.presentation-text p {
    line-height: 1.6;
}

.presentation-image {
    flex: 1;
    text-align: center;
}

.presentation-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* CTA Section */
.cta-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.cta-card {
    background: white;
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.cta-card:hover {
    transform: translateY(-5px);
}

.cta-card h3 {
    margin-bottom: 15px;
    color: #333;
}

.cta-card p {
    line-height: 1.6;
    color: #555;
}

.cta-card a {
    color: #6e8efb;
    text-decoration: none;
    font-weight: 500;
}

.cta-card a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content,
    .presentation-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .process-steps,
    .cta-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .mc-everything {
        padding: 0 15px;
    }
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .hero-text h2,
    .presentation-text h2 {
        font-size: 1.5rem;
    }
    
    section {
        margin-bottom: 60px;
    }
}

/* Enhanced chatbot list styling - VERTICAL */
.chatbot-list {
    list-style: disc;
    padding: 0;
    margin: 5px 0;
    text-align: left;
    display: inline-block;
}

.chatbot-list li {
    padding: 0px 5px;
    margin: 5px 0;
    font-size: 0.95rem;
    color: #6e8efb;
    font-weight: 500;
}

/* Step icon styling */
.step-icon i {
    font-size: 2rem;
    color: #6e8efb; /* Your purple color */
    margin: 10px 0;
    display: block;
}