/* General Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2c3e50;
    position: relative;
    display: inline-block;
}

.divider {
    width: 80px;
    height: 4px;
    background: #0082cb;
    margin: 0 auto 2rem;
    border-radius: 2px;
}

/* Services Section */
.services-section {
    background: #fff;
}

.service-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #eee;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card .icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: rgba(231, 76, 60, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #0082cb;
    transition: all 0.3s ease;
}

.service-card:hover .icon-wrapper {
    background: #0082cb;
    color: #fff;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-card p {
    color: #7f8c8d;
    margin-bottom: 0;
}

/* Stats Section */
.stats-section {
    background: #f8f9fa;
    padding: 60px 0;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-item i {
    font-size: 2.5rem;
    color: #0082cb;
    margin-bottom: 15px;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 5px;
}

.stat-item p {
    color: #7f8c8d;
    margin: 0;
    font-size: 1.1rem;
}

/* Guarantee Section */
.guarantee-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #eee;
}

.guarantee-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.guarantee-card .icon-wrapper {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: rgba(52, 152, 219, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #3498db;
    transition: all 0.3s ease;
}

.guarantee-card:hover .icon-wrapper {
    background: #3498db;
    color: #fff;
}

.guarantee-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.guarantee-card p {
    color: #7f8c8d;
    margin-bottom: 0;
    font-size: 0.95rem;
}

.guarantee-banner {
    background: #fff;
    border-radius: 10px;
    padding: 40px;
    margin-top: 50px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
}

.check-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.check-list li i {
    color: #0082cb;
    margin-right: 10px;
    position: absolute;
    left: 0;
    top: 3px;
}

/* Quality Section */
.quality-manifesto {
    max-width: 900px;
    margin: 0 auto;
}

.manifesto-item {
    display: flex;
    margin-bottom: 30px;
    background: #fff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.manifesto-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.manifesto-icon {
    width: 60px;
    height: 60px;
    background: rgba(46, 204, 113, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #0082cb;
    margin-right: 25px;
    flex-shrink: 0;
}

.manifesto-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.manifesto-content p {
    color: #7f8c8d;
    margin-bottom: 0;
}

.standard-badge {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.standard-badge:hover {
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transform: translateY(-3px);
}

.standard-badge i {
    display: block;
    font-size: 2rem;
    color: #3498db;
    margin-bottom: 10px;
}

.standard-badge span {
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.9rem;
}

.quality-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.quality-image img {
    transition: all 0.5s ease;
}

.quality-image:hover img {
    transform: scale(1.03);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .manifesto-item {
        flex-direction: column;
        text-align: center;
    }
    
    .manifesto-icon {
        margin: 0 auto 15px;
    }
    
    .quality-banner .row > div:first-child {
        margin-bottom: 30px;
    }
}

/* Animation for counters */
@keyframes counter {
    from { 
        content: '0';
    }
    to { 
        content: attr(data-target);
    }
}

.counter {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    display: inline-block;
}

.counter::after {
    content: attr(data-target);
    animation: counter 2s ease-out forwards;
}
