/* CMO on Demand Page Styles */

.top-header {
    background-color: #2c3e50;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: white;
    font-family: Arial, sans-serif;
    padding: 0 100px;
}

.top-header h1 {
    font-size: 3em;
    margin: 0 10px 0 0;
    display: inline;
    vertical-align: middle;
}

.top-header span {
    font-size: 2em;
    vertical-align: middle;
}

@media (max-width: 768px) {
    .top-header {
        height: 80px;
        justify-content: center;
        padding: 0 20px;
    }

    .top-header h1 {
        font-size: 2em;
        margin: 0 5px 0 0;
        vertical-align: middle;
    }

    .top-header span {
        font-size: 1.5em;
        vertical-align: middle;
    }
}

.services-section {
    padding: 50px 0;
    background-color: #f9f9f9;
}

.services-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.services-section h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #333;
}

.services-section .subtitle {
    text-align: center;
    font-size: 1.2em;
    color: #666;
    margin-bottom: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-item {
    background-color: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 5px solid;
    position: relative;
    overflow: hidden;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

.service-item:nth-child(1) {
    border-top-color: #e67e22;
}

.service-item:nth-child(1) .icon {
    background-color: #e67e22;
}

.service-item:nth-child(2) {
    border-top-color: #ff6b6b;
}

.service-item:nth-child(2) .icon {
    background-color: #ff6b6b;
}

.service-item:nth-child(3) {
    border-top-color: #4ecdc4;
}

.service-item:nth-child(3) .icon {
    background-color: #4ecdc4;
}

.service-item:nth-child(4) {
    border-top-color: #45b7d1;
}

.service-item:nth-child(4) .icon {
    background-color: #45b7d1;
}

.service-item:nth-child(5) {
    border-top-color: #f9ca24;
}

.service-item:nth-child(5) .icon {
    background-color: #f9ca24;
}

.service-item:nth-child(6) {
    border-top-color: #f0932b;
}

.service-item:nth-child(6) .icon {
    background-color: #f0932b;
}

.service-item:nth-child(7) {
    border-top-color: #9b59b6;
}

.service-item:nth-child(7) .icon {
    background-color: #9b59b6;
}

.service-item:nth-child(8) {
    border-top-color: #1abc9c;
}

.service-item:nth-child(8) .icon {
    background-color: #1abc9c;
}

.service-item:nth-child(9) {
    border-top-color: #34495e;
}

.service-item:nth-child(9) .icon {
    background-color: #34495e;
}

.service-item:nth-child(10) {
    border-top-color: #e74c3c;
}

.service-item:nth-child(10) .icon {
    background-color: #e74c3c;
}

.service-item:nth-child(11) {
    border-top-color: #f39c12;
}

.service-item:nth-child(11) .icon {
    background-color: #f39c12;
}

.service-item:nth-child(12) {
    border-top-color: #8e44ad;
}

.service-item:nth-child(12) .icon {
    background-color: #8e44ad;
}

.icon {
    width: 80px;
    height: 80px;
    background-color: #e67e22;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: transform 0.3s ease;
    animation: icon-bounce 2s infinite;
}

@keyframes icon-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.icon i {
    font-size: 2em;
    color: white;
}

.icon:hover {
    transform: scale(1.1) rotate(5deg);
}

.service-item h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #333;
}

.service-item p {
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .services-section h2 {
        font-size: 2em;
    }

    .services-section .subtitle {
        font-size: 1em;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .service-item {
        padding: 15px;
    }

    .icon {
        width: 50px;
        height: 50px;
    }

    .icon i {
        font-size: 1.2em;
    }
}

.industries-section {
    padding: 50px 0;
    background-color: #f4f4f4;
}

.industries-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.industries-section h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #333;
}

.industries-section .subtitle {
    text-align: center;
    font-size: 1.2em;
    color: #666;
    margin-bottom: 40px;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.industry-item {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 3px solid;
    position: relative;
    overflow: hidden;
}

.industry-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.industry-item:nth-child(1) {
    border-top-color: #e74c3c;
}

.industry-item:nth-child(1) .icon {
    background-color: #e74c3c;
}

.industry-item:nth-child(2) {
    border-top-color: #3498db;
}

.industry-item:nth-child(2) .icon {
    background-color: #3498db;
}

.industry-item:nth-child(3) {
    border-top-color: #2ecc71;
}

.industry-item:nth-child(3) .icon {
    background-color: #2ecc71;
}

.industry-item:nth-child(4) {
    border-top-color: #f39c12;
}

.industry-item:nth-child(4) .icon {
    background-color: #f39c12;
}

.industry-item:nth-child(5) {
    border-top-color: #9b59b6;
}

.industry-item:nth-child(5) .icon {
    background-color: #9b59b6;
}

.industry-item:nth-child(6) {
    border-top-color: #1abc9c;
}

.industry-item:nth-child(6) .icon {
    background-color: #1abc9c;
}

.industry-item:nth-child(7) {
    border-top-color: #34495e;
}

.industry-item:nth-child(7) .icon {
    background-color: #34495e;
}

.industry-item:nth-child(8) {
    border-top-color: #e67e22;
}

.industry-item:nth-child(8) .icon {
    background-color: #e67e22;
}

.industry-item .icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: transform 0.3s ease;
    animation: icon-bounce 2s infinite;
}

.industry-item .icon i {
    font-size: 2em;
    color: white;
}

.industry-item .icon:hover {
    transform: scale(1.1) rotate(5deg);
}

.industry-item h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #333;
}

.industry-item p {
    color: #666;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .industries-section h2 {
        font-size: 2em;
    }

    .industries-section .subtitle {
        font-size: 1em;
    }

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .industry-item {
        padding: 15px;
    }

    .industry-item .icon {
        width: 50px;
        height: 50px;
    }

    .industry-item .icon i {
        font-size: 1.2em;
    }
}

.why-choose-section {
    padding: 50px 0;
    background-color: #fafafa;
}

.why-choose-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.why-choose-section h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #333;
}

.why-choose-section .subtitle {
    text-align: center;
    font-size: 1.2em;
    color: #666;
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-card {
    background-color: white;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    color: #333;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.feature-card:hover {
    transform: scale(1.05);
}

.feature-card:nth-child(1) {
    background-color: #e67e22;
    color: white;
}

.feature-card:nth-child(2) {
    background-color: #e74c3c;
    color: white;
}

.feature-card:nth-child(3) {
    background-color: #2ecc71;
    color: white;
}

.feature-card:nth-child(4) {
    background-color: #f39c12;
    color: white;
}

.feature-card:nth-child(5) {
    background-color: #9b59b6;
    color: white;
}

.feature-card:nth-child(6) {
    background-color: #3498db;
    color: white;
}

.feature-card i {
    font-size: 3em;
    margin-bottom: 20px;
    color: white;
}

.feature-card h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
}

.feature-card p {
    line-height: 1.6;
    opacity: 0.9;
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .why-choose-section h2 {
        font-size: 2em;
    }

    .why-choose-section .subtitle {
        font-size: 1em;
    }

    .features-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 15px;
    }

    .feature-card {
        padding: 20px;
    }

    .feature-card i {
        font-size: 2em;
    }
}

.process-section {
    padding: 50px 0;
    background-color: #fafafa;
}

.process-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.process-section h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #333;
}

.process-section .subtitle {
    text-align: center;
    font-size: 1.2em;
    color: #666;
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-card {
    background-color: white;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    color: #333;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.feature-card:hover {
    transform: scale(1.05);
}

.feature-card:nth-child(1) {
    background-color: #e67e22;
    color: white;
}

.feature-card:nth-child(2) {
    background-color: #e74c3c;
    color: white;
}

.feature-card:nth-child(3) {
    background-color: #2ecc71;
    color: white;
}

.feature-card:nth-child(4) {
    background-color: #f39c12;
    color: white;
}

.feature-card:nth-child(5) {
    background-color: #9b59b6;
    color: white;
}

.feature-card:nth-child(6) {
    background-color: #3498db;
    color: white;
}

.feature-card:nth-child(7) {
    background-color: #1abc9c;
    color: white;
}

.feature-card i {
    font-size: 3em;
    margin-bottom: 20px;
    color: white;
}

.feature-card h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
}

.feature-card p {
    line-height: 1.6;
    opacity: 0.9;
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .process-section h2 {
        font-size: 2em;
    }

    .process-section .subtitle {
        font-size: 1em;
    }

    .features-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 15px;
    }

    .feature-card {
        padding: 20px;
    }

    .feature-card i {
        font-size: 2em;
    }
}

.platform-section {
    padding: 50px 0;
    background-color: #f9f9f9;
}

.platform-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.platform-section h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #333;
}

.platform-section .subtitle {
    text-align: center;
    font-size: 1.2em;
    color: #666;
    margin-bottom: 40px;
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.platform-item {
    background-color: #2c3e50;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    color: white;
    transition: transform 0.3s ease;
}

.platform-item:hover {
    transform: scale(1.05);
}

.platform-item:nth-child(1) {
    background-color: #2c3e50;
}

.platform-item:nth-child(2) {
    background-color: #34495e;
}

.platform-item:nth-child(3) {
    background-color: #2c3e50;
}

.platform-item:nth-child(4) {
    background-color: #34495e;
}

.platform-item:nth-child(5) {
    background-color: #2c3e50;
}

.platform-item:nth-child(6) {
    background-color: #34495e;
}

.platform-item .icon {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.platform-item .icon i {
    font-size: 2em;
    color: white;
}

.platform-item h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
}

.platform-item p {
    line-height: 1.6;
    opacity: 0.9;
}

@media (max-width: 1024px) {
    .platform-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .platform-section h2 {
        font-size: 2em;
    }

    .platform-section .subtitle {
        font-size: 1em;
    }

    .platform-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .platform-item {
        padding: 15px;
    }

    .platform-item .icon {
        width: 50px;
        height: 50px;
    }

    .platform-item .icon i {
        font-size: 1.2em;
    }
}

.faq-section {
    padding: 50px 0;
    background-color: #fafafa;
}

.faq-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 40px;
    color: #333;
}

.faq-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.faq-item {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    background-color: #2c3e50;
    color: white;
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #34495e;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.3em;
    font-weight: bold;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    background-color: white;
    color: #333;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    padding: 20px;
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .faq-section h2 {
        font-size: 2em;
    }

    .faq-container {
        grid-template-columns: 1fr;
    }

    .faq-item {
        padding: 20px;
    }
}

.dm-cta-section {
    background-color: #2c3e50;
    padding: 50px 0;
    color: white;
    text-align: center;
}

.dm-cta-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.dm-cta-section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.dm-cta-section p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5em;
    font-weight: bold;
    color: white;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9em;
    color: rgba(255, 255, 255, 0.9);
}

.btn {
    display: inline-block;
    background-color: white;
    color: #2c3e50;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #e0e0e0;
}

.cta-note {
    font-size: 0.9em;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 15px;
}

@media (max-width: 768px) {
    .dm-cta-section h2 {
        font-size: 2em;
    }

    .dm-cta-section p {
        font-size: 1em;
    }

    .cta-stats {
        flex-direction: column;
        gap: 20px;
    }

    .stat-number {
        font-size: 2em;
    }

    .btn {
        padding: 12px 25px;
    }
}