/* AI Services Page Styles */

/* AI Services Section */
#ai-services {
    padding: 80px 0;
    background: #fff;
}

#ai-services .section-header {
    text-align: center;
    margin-bottom: 60px;
}

#ai-services .section-title {
    color: #222;
    font-size: 36px;
    margin-bottom: 20px;
}

#ai-services .section-header-text {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

/* Service Details List */

/* Service Details List */
.service-details {
    list-style: none;
    margin: 20px 0;
    padding: 0;
    text-align: left;
}

.service-details li {
    margin: 10px 0;
    padding: 10px 15px;
    background: #f9f9f9;
    border-left: 3px solid #e96247;
    color: #666;
}

.service-details li:hover {
    background: #f0f0f0;
    border-left-color: #333;
}

/* What We Don't Do Section */
#what-we-dont {
    padding: 80px 0;
    background: #fff;
}

.dont-do-item {
    text-align: center;
    padding: 40px 20px;
    background: #f9f9f9;
    border-radius: 8px;
    height: 100%;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.dont-do-item:hover {
    background: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    transform: translateY(-5px);
}

.dont-do-title {
    color: #333;
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 700;
}

.dont-do-text {
    color: #666;
    font-size: 14px;
}

/* Deliverables Section */
#deliverables {
    padding: 80px 0;
}

.deliverable-item {
    text-align: center;
    padding: 30px 15px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.deliverable-item:hover {
    border-color: #e96247;
    background: #e96247;
}

.deliverable-item:hover h4 {
    color: #fff;
}

.deliverable-item h4 {
    color: #333;
    font-size: 16px;
    margin: 0;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

/* Cooperation Models Section */
#cooperation {
    padding: 80px 0;
    background: #fff;
}

.cooperation-item {
    text-align: center;
    padding: 40px 30px;
    background: #f5f5f5;
    border-radius: 8px;
    height: 100%;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.cooperation-item:hover {
    background: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    transform: translateY(-5px);
}

.cooperation-item h3 {
    color: #e96247;
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 700;
}

.cooperation-item p {
    color: #666;
    font-size: 14px;
    line-height: 1.8;
}

/* CTA Section */
#cta {
    padding: 100px 0;
    background: #e96247;
}

.cta-content {
    text-align: center;
}

.cta-content h2 {
    color: #fff;
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-content p {
    color: #fff;
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-content .stamp-button {
    background: #fff;
    color: #e96247;
    border: 2px solid #fff;
}

.cta-content .stamp-button:hover {
    background: transparent;
    color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .col-1-2,
    .col-1-3,
    .col-1-4,
    .col-1-5 {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .cta-content p {
        font-size: 16px;
    }

    .service-details li {
        font-size: 14px;
    }
}
