/* === Container for all workshops === */
.workshop-container {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* === Individual workshop/course box === */
.topic-section {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.topic-section:hover {
    transform: translateY(-5px);
}

/* === Content inside each box === */
.topic-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.topic-content h2 {
    color: #007BFF;
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.topic-content p {
    color: #333;
    font-size: 1rem;
    line-height: 1.6;
    font-family: 'Roboto', 'Open Sans', sans-serif;
    flex-grow: 1;
}

.topic-content .learn-more {
    margin-top: 15px;
    font-weight: bold;
    color: #000; /* Changed from #007BFF (navy blue) to black */
    text-decoration: underline;
    align-self: flex-start;
}

/* === Page Banner === */
.page-banner {
    background-size: cover;
    background-position: center;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-bottom: 50px;
    position: relative;
}

.page-banner h1 {
    font-size: 3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

/* === Modal Styling === */
.modal-content {
    font-family: 'Roboto', 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
}
.modal-content h2 {
    font-size: 22px;
    margin-bottom: 10px;
}
.modal-content p {
    font-size: 22px;
    margin-bottom: 8px;
}
.modal-content ul {
    font-size: 16px;
    padding-left: 20px;
}

/* === Responsive Adjustments === */
@media (max-width: 768px) {
    .page-banner {
        height: 200px;
    }
    .page-banner h1 {
        font-size: 2rem;
    }
}


/* === ai-business-consulting page === */

/* === Shared Section Container === */
.styled-section {
    background-color: #f9f9f9;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s ease;
}

.styled-section:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.styled-section h2 {
    color: #003366;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid #007acc;
    display: inline-block;
    padding-bottom: 0.25rem;
}

.styled-section p,
.styled-section li {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
}

.styled-section ul.custom-list {
    margin-top: 1rem;
}

.styled-section ul.custom-list li::before {
    content: "✔️";
    position: absolute;
    left: 0;
    top: 0.2rem;
    color: #007acc;
}

/* Optional: Centered version for narrow screens */
@media (max-width: 768px) {
    .styled-section {
        padding: 1.5rem;
    }
}
/* === Multi-column service layout === */
.multi-column-section {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.service-box {
    flex: 1 1 48%;
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s ease;
}

.service-box:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.service-box h2 {
    color: #003366;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid #007acc;
    display: inline-block;
    padding-bottom: 0.25rem;
}

.service-box p,
.service-box li {
    color: #333;
    font-size: 1.4rem;
    line-height: 1.6;
    font-family: 'Roboto', 'Open Sans', sans-serif;
    flex-grow: 1;
}


@media (max-width: 768px) {
    .multi-column-section {
        flex-direction: column;
    }

    .service-box {
        flex: 1 1 100%;
    }
}


/* === Final Message Styling === */
.final-message {
    text-align: center;
    font-size: 1.4rem;         /* Increased size */
    font-weight: 600;          /* Bold */
    font-style: normal;        /* No italics */
    color: #333;
    margin: 3rem auto;
    line-height: 1.8;
    max-width: 900px;
    font-family: 'Roboto', 'Open Sans', sans-serif;
}

/* === Call to Action Box === */
.cta-box {
    background: #007acc;
    color: white;
    padding: 2.5rem 3rem;
    border-radius: 12px;
    text-align: center;
    margin: 2rem auto 4rem;
    max-width: 800px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.cta-box h3 {
    margin-top: 0;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.4;
}

.cta-box p {
    font-size: 1.2rem;
    margin: 1rem 0 1.5rem;
    font-weight: 400;
}

/* === CTA Button === */
.cta-button {
    background: white;
    color: #007acc;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
    transition: background 0.3s ease, color 0.3s ease;
    display: inline-block;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}

.cta-button:hover {
    background: #005fa3;
    color: white;
}
