/* ChatGPT Service Page Specific Styles */

/* Page Background */
body {
    background-image: url('/images/other_pages_bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    z-index: -1;
}

.hero {
    padding: 30px 0 20px;
    margin-top: 50px;
}

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

.hero-content h2 {
    margin-bottom: 1.5rem;
}

.hero-content p {
    margin-bottom: 1.5rem;
}

.chatgpt-service-content {
    padding: 40px 0;
}

.service-overview {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: stretch;
}

.left-column, .right-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-section {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
}

.service-section.highlight-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-left: 4px solid #667eea;
}

.service-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e9ecef;
}

.service-icon {
    font-size: 2rem;
    margin-right: 1rem;
}

.service-header h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin: 0;
    font-weight: 600;
}

.service-text p {
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    text-align: justify;
}

/* ChatGPT Service Page Responsive */
@media (max-width: 768px) {
    .service-overview {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* DX Background Section */
.dx-background-section {
    padding: 60px 0;
}

.dx-content {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(248, 249, 250, 0.9);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
}

.dx-content h2 {
    text-align: center;
    color: #2c3e50;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.highlight-banner {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    padding: 1rem 2rem;
    border-radius: 25px;
    text-align: center;
    margin-bottom: 3rem;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.highlight-banner h3 {
    color: #2c3e50;
    font-size: 1.4rem;
    margin: 0;
    font-weight: 600;
}

.dx-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
}

.benefit-card h4 {
    color: #667eea;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.benefit-card p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.dx-importance {
    margin-bottom: 4rem;
}

.importance-header {
    text-align: center;
    margin-bottom: 3rem;
}

.importance-header p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.importance-header h3 {
    color: #ffd700;
    font-size: 1.8rem;
    margin: 0;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.importance-reasons {
    display: grid;
    gap: 1.5rem;
}

.reason-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
}

.reason-number {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.reason-content h4 {
    color: #2c3e50;
    font-size: 1.2rem;
    margin: 0 0 0.5rem 0;
    font-weight: 600;
}

.reason-content p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.dx-challenges h3 {
    text-align: center;
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.challenges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.challenge-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    text-align: center;
}

.challenge-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.challenge-card h4 {
    color: #667eea;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.challenge-card p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .dx-benefits {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .challenges-grid {
        grid-template-columns: 1fr;
    }
    
    .reason-item {
        flex-direction: column;
        text-align: center;
    }
    
    .dx-content h2 {
        font-size: 1.8rem;
    }
    
    .importance-header h3 {
        font-size: 1.5rem;
    }
}
