.service-card {
    padding: 20px;
    border: 1px solid #ddd;
    margin-bottom: 20px;
    background: #fff;
}
.service-card:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.service-icon {
    font-size: 40px;
    color: #337ab7;
    margin-bottom: 15px;
}
.content-section {
    padding: 30px 0;
}
.content-box {
    background: #f9f9f9;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 4px;
}
.content-box h4 {
    color: #337ab7;
    margin-bottom: 15px;
    font-size: 18px;
}
.content-box p {
    line-height: 1.8;
    margin-bottom: 10px;
}
.content-box ul {
    margin-left: 20px;
    margin-bottom: 15px;
}
.content-box ul li {
    line-height: 2;
    margin-bottom: 5px;
}
.stats-box {
    text-align: center;
    padding: 20px;
}
.stats-box i {
    font-size: 50px;
    color: #337ab7;
    margin-bottom: 15px;
}
.stats-box h4 {
    margin: 10px 0;
    font-size: 16px;
}
.stats-box p {
    color: #666;
}
.feature-list {
    list-style: none;
    margin-left: 0;
    padding-left: 0;
}
.feature-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}
.feature-list li:last-child {
    border-bottom: none;
}
.feature-list li i {
    color: #337ab7;
    margin-right: 10px;
}
.contact-info {
    background: #f5f5f5;
    padding: 25px;
    margin-bottom: 20px;
}
.contact-info ul {
    list-style: none;
    margin-left: 0;
    padding-left: 0;
}
.contact-info ul li {
    padding: 8px 0;
    border-bottom: 1px solid #ddd;
}
.contact-info ul li:last-child {
    border-bottom: none;
}
.contact-info ul li span {
    font-weight: bold;
    min-width: 120px;
    display: inline-block;
}
.case-study {
    background: #fff;
    border: 1px solid #ddd;
    padding: 20px;
    margin-bottom: 20px;
}
.case-study h4 {
    color: #337ab7;
    margin-bottom: 15px;
}
.case-study .result {
    background: #f0f9ff;
    padding: 15px;
    margin-top: 15px;
    border-left: 3px solid #337ab7;
}
.process-step {
    text-align: center;
    padding: 20px;
}
.process-step .step-number {
    width: 50px;
    height: 50px;
    line-height: 50px;
    background: #337ab7;
    color: #fff;
    border-radius: 50%;
    margin: 0 auto 15px;
    font-size: 20px;
    font-weight: bold;
}
.team-member {
    text-align: center;
    padding: 20px;
}
.team-member i {
    font-size: 40px;
    color: #337ab7;
    margin-bottom: 10px;
}
.breadcrumb-custom {
    background: #f5f5f5;
    padding: 15px 0;
    margin-bottom: 30px;
}
.breadcrumb-custom a {
    color: #337ab7;
    text-decoration: none;
}
.breadcrumb-custom a:hover {
    text-decoration: underline;
}
.page-header-custom {
    background: #337ab7;
    color: #fff;
    padding: 40px 0;
    text-align: center;
    margin-bottom: 40px;
}
.page-header-custom h2 {
    font-size: 32px;
    margin-bottom: 10px;
}
.page-header-custom p {
    font-size: 16px;
    opacity: 0.9;
}
.advantage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}
.advantage-item {
    background: #fff;
    padding: 20px;
    border: 1px solid #ddd;
    text-align: center;
}
.advantage-item i {
    font-size: 36px;
    color: #337ab7;
    margin-bottom: 15px;
}
.advantage-item h4 {
    margin-bottom: 10px;
}
.faq-item {
    background: #fff;
    border: 1px solid #ddd;
    padding: 20px;
    margin-bottom: 15px;
}
.faq-item .question {
    font-weight: bold;
    color: #337ab7;
    margin-bottom: 10px;
}
.faq-item .answer {
    color: #666;
    line-height: 1.8;
}
.map-placeholder {
    background: #f5f5f5;
    padding: 40px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.map-placeholder .content {
    text-align: center;
}
.map-placeholder i {
    font-size: 80px;
    color: #337ab7;
}
.progress-custom {
    margin-bottom: 20px;
}
.progress-custom .progress {
    height: 30px;
    line-height: 30px;
}
.progress-custom .progress-bar {
    font-size: 14px;
    font-weight: bold;
}
.badge-custom {
    display: inline-block;
    padding: 8px 15px;
    margin: 5px;
    border-radius: 20px;
    font-size: 14px;
}
.table-custom {
    width: 100%;
    margin-bottom: 30px;
}
.table-custom td {
    padding: 15px;
    vertical-align: top;
    border-bottom: 1px solid #ddd;
}
.table-custom td:first-child {
    font-weight: bold;
    color: #337ab7;
    width: 200px;
}
@media (max-width: 768px) {
    .advantage-grid {
        grid-template-columns: 1fr;
    }
    .page-header-custom h2 {
        font-size: 24px;
    }
    .map-placeholder {
        height: 300px;
    }
}
