.anytalk-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.anytalk-img-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.anytalk-logo {
    text-align: center;
    margin-bottom: 20px;
}

.anytalk-logo img {
    height: 120px;
}

.anytalk-mock {
    max-width: 60%;
    max-height: 60%;
    object-fit: cover;
}

.anytalk-title {
    text-align: center;
    color: #3CBDAF;
    font-weight: bold;
    font-size: 24px;
    margin-bottom: 80px;
}

.feature-grid {
    display: flex;
    justify-content: space-between;
    gap: 25px;
    margin: 60px 0;
}

.feature-box {
    flex: 1;
    background: linear-gradient(135deg, #3CBDAF 0%, #35A69A 100%);
    padding: 15px 30px;
    text-align: center;
    border-radius: 16px;
    min-height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(60, 189, 175, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(60, 189, 175, 0.25);
}


.feature-box p {
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.5;
    word-break: keep-all;
    font-weight: 400;
    letter-spacing: 0.02em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .feature-grid {
        flex-direction: column;
        gap: 20px;
    }
    
    .feature-box {
        min-height: 100px;
    }
}

.anytalk-subtitle {
    text-align: center;
    color: #666;
    font-size: 24px;
    margin: 40px 0;
    line-height: 1.6;
}

.main-service-title {
    text-align: center;
    font-weight: 600;
    font-size: 28px;
    color: #333;
    margin: 80px 0 40px;
} 


.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin: 40px 0;
}

.service-item {
    display: flex;
    gap: 30px;
    padding: 30px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.service-image {
    width: 200px;
    height: 160px;
    flex-shrink: 0;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.service-content {
    flex: 1;
}

.service-title {
    color: #3CBDAF;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    color: #666;
    font-size: 15px;
    line-height: 1.5;
}

.service-features li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3CBDAF;
}


@media (max-width: 1024px) {
    .service-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .service-item {
        flex-direction: column;
        gap: 20px;
    }
    
    .service-image {
        width: 100%;
        height: 200px;
    }
}