/* Стили для шаблона "Страница услуги" */

.service-page {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

/* Карточка услуги */
.service-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #e1e8ed;
}

.service-image-container {
    margin-bottom: 1.5rem;
    border-radius: 8px;
    overflow: hidden;
    background: #f8f9fa;
    border: 1px solid #e1e8ed;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.service-image {
    width: 100%;
    height: 400px;
    object-fit: contain;
    object-position: center;
    background: #f8f9fa;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.service-image:hover {
    transform: scale(1.02);
}

.service-details {
    text-align: center;
}

/* Горизонтальная компоновка: картинка слева, цена справа */
.service-main-info {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2rem;
}

.service-image-section {
    flex: 1;
    max-width: 50%;
}

.service-price-duration {
    flex: 1;
    max-width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    border: 1px solid #dee2e6;
    min-height: 300px;
}

.service-title {
    color: #2c3e50;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}


.service-price {
    font-size: 2.2rem;
    font-weight: bold;
    color: #3498db;
    margin: 0;
    padding: 0.8rem 1.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 2px solid #3498db;
    text-align: center;
    min-width: 200px;
}

.service-duration {
    color: #495057;
    font-size: 1.1rem;
    margin: 0;
    font-weight: 500;
    text-align: center;
    padding: 0.5rem 1rem;
    background: rgba(52, 152, 219, 0.1);
    border-radius: 6px;
    border-left: 4px solid #3498db;
}

.service-features,
.service-benefits {
    text-align: left;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.service-features h4,
.service-benefits h4 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

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

.service-features li,
.service-benefits li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 2rem;
    font-size: 1rem;
    line-height: 1.5;
}

.service-features li::before,
.service-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Основной контент */
.service-content {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #e1e8ed;
}

.service-content h2 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-content h3 {
    color: #34495e;
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.service-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #555;
}

.service-content ul,
.service-content ol {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.service-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* Адаптивность */
@media (max-width: 768px) {
    .service-page {
        padding: 1rem 0;
    }
    
    .service-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .service-title {
        font-size: 2rem;
    }
    
    .service-main-info {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .service-image-section {
        max-width: 100%;
    }
    
    .service-price-duration {
        max-width: 100%;
        padding: 1.5rem;
        gap: 0.8rem;
        min-height: 200px;
    }
    
    .service-price {
        font-size: 1.8rem;
        padding: 0.6rem 1rem;
        min-width: 150px;
    }
    
    .service-duration {
        font-size: 1rem;
    }
    
    .service-image-container {
        min-height: 250px;
    }
    
    .service-image {
        height: 250px;
    }
    
    .service-features,
    .service-benefits {
        padding: 1rem;
    }
    
    .service-content {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .service-card {
        padding: 1rem;
    }
    
    .service-title {
        font-size: 1.8rem;
    }
    
    .service-main-info {
        gap: 1rem;
    }
    
    .service-price-duration {
        padding: 1rem;
        gap: 0.6rem;
        min-height: 150px;
    }
    
    .service-price {
        font-size: 1.5rem;
        padding: 0.5rem 0.8rem;
        min-width: 120px;
    }
    
    .service-duration {
        font-size: 0.9rem;
    }
    
    .service-content {
        padding: 1rem;
    }
}

/* Стили для контента страницы */
.service-content {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
    line-height: 1.8;
    color: #2c3e50;
}

.service-content h2 {
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid #3498db;
}

.service-content h3 {
    color: #34495e;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.service-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.service-content ul,
.service-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.service-content li {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.service-content strong {
    color: #2c3e50;
    font-weight: 700;
}

.service-content a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.service-content a:hover {
    color: #2980b9;
    text-decoration: underline;
}

/* Адаптивность для контента */
@media (max-width: 768px) {
    .service-content {
        padding: 2rem;
        margin-top: 1.5rem;
        border-radius: 15px;
    }
    
    .service-content h2 {
        font-size: 1.8rem;
    }
    
    .service-content h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .service-content {
        padding: 1.5rem;
        margin-top: 1rem;
        border-radius: 12px;
    }
    
    .service-content h2 {
        font-size: 1.6rem;
    }
    
    .service-content h3 {
        font-size: 1.2rem;
    }
    
    .service-content p,
    .service-content li {
        font-size: 1rem;
    }
}

/* ===== СТИЛИ ДЛЯ ФОРМЫ ЗАЯВКИ ===== */

.service-request-form {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 2rem 0;
    margin: 1.5rem 0;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.service-request-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1;
    animation: formSlideIn 0.8s ease-out;
}

@keyframes formSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.form-container h2 {
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 0.8rem;
    text-align: center;
    font-weight: 700;
    position: relative;
    padding-bottom: 0.8rem;
}

.form-container h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 2px;
}

.form-description {
    color: #7f8c8d;
    text-align: center;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    font-size: 1rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid #e1e8ed;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
    background: white;
    box-shadow: 0 0 0 4px rgba(52, 152, 219, 0.15);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

/* Чекбоксы */
.checkbox-group {
    margin-bottom: 0.8rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #2c3e50;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
    position: relative;
    opacity: 0;
    cursor: pointer;
}

.checkmark {
    width: 22px;
    height: 22px;
    background: #f8f9fa;
    border: 2px solid #e1e8ed;
    border-radius: 6px;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-color: #3498db;
    box-shadow: 0 2px 8px rgba(52, 152, 219, 0.3);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-label a {
    color: #3498db;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

/* Кнопка отправки */
.form-submit {
    text-align: center;
    margin-top: 1.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 200px;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(44, 62, 80, 0.3);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-primary:hover::before {
    left: 0;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(44, 62, 80, 0.4);
    border-color: #3498db;
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.3px;
}

/* Сообщения */
.form-success,
.form-error {
    margin-top: 1.5rem;
    padding: 1.2rem;
    border-radius: 8px;
    text-align: center;
}

.form-success {
    background: linear-gradient(135deg, #d1ecf1 0%, #bee5eb 100%);
    border: 2px solid #3498db;
    color: #0c5460;
    border-radius: 12px;
}

.form-error {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    border: 2px solid #dc3545;
    color: #721c24;
    border-radius: 12px;
}

.success-message,
.error-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.success-message i,
.error-message i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.success-message i {
    color: #3498db;
}

.error-message i {
    color: #dc3545;
}

.success-message h3,
.error-message h3 {
    margin: 0;
    font-size: 1.3rem;
}

.success-message p,
.error-message p {
    margin: 0;
    font-size: 1rem;
}

/* Адаптивность */
@media (max-width: 768px) {
    .service-request-form {
        padding: 1.5rem 0;
        margin: 1rem 0;
        border-radius: 12px;
    }
    
    .form-container {
        padding: 1.5rem;
        margin: 0 1rem;
        border-radius: 12px;
    }
    
    .form-container h2 {
        font-size: 1.8rem;
    }
    
    .form-description {
        font-size: 0.95rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .btn-large {
        padding: 1rem 2rem;
        font-size: 1.1rem;
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    .service-request-form {
        padding: 1.5rem 0;
        margin: 0.8rem 0;
        border-radius: 10px;
    }
    
    .form-container {
        padding: 1.2rem;
        margin: 0 0.5rem;
        border-radius: 10px;
    }
    
    .form-container h2 {
        font-size: 1.6rem;
    }
    
    .form-description {
        font-size: 0.9rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.7rem 0.8rem;
        font-size: 0.9rem;
        border-radius: 8px;
    }
    
    .btn-large {
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }
}

/* ===== ИНФОГРАФИКА ПРЕИМУЩЕСТВ КОМПАНИИ ===== */

.company-advantages {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 0;
    margin: 3rem 0;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.company-advantages::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(52, 152, 219, 0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
}

.advantages-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

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

.advantages-header h2 {
    color: #2c3e50;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
}

.advantages-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 2px;
}

.advantages-header p {
    color: #7f8c8d;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.advantage-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e1e8ed;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #3498db;
}

.advantage-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.advantage-icon i {
    font-size: 1.5rem;
    color: white;
}

.advantage-content h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.advantage-content p {
    color: #7f8c8d;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* ===== СТАТИСТИКА КОМПАНИИ ===== */

.company-stats {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 4rem 0;
    margin: 3rem 0;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.company-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stats" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="2" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23stats)"/></svg>');
    opacity: 0.3;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

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

.stats-header h2 {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.stats-header p {
    color: #bdc3c7;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== ПРИЗЫВ К ДЕЙСТВИЮ ===== */

.cta-section {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    padding: 4rem 0;
    margin: 3rem 0;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="cta" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="45" cy="45" r="1.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23cta)"/></svg>');
    opacity: 0.4;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

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

.cta-content h2 {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    min-width: 200px;
    text-decoration: none;
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: white;
    color: #3498db;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* Адаптивность для инфографики */
@media (max-width: 768px) {
    .company-advantages,
    .company-stats,
    .cta-section {
        padding: 2.5rem 0;
        margin: 2rem 0;
        border-radius: 15px;
    }
    
    .advantages-container,
    .stats-container,
    .cta-container {
        padding: 0 1rem;
    }
    
    .advantages-header h2,
    .stats-header h2,
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .advantage-card {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        min-width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .company-advantages,
    .company-stats,
    .cta-section {
        padding: 2rem 0;
        margin: 1.5rem 0;
        border-radius: 12px;
    }
    
    .advantages-header h2,
    .stats-header h2,
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .advantages-header p,
    .stats-header p,
    .cta-content p {
        font-size: 1rem;
    }
    
    .advantage-card {
        padding: 1.2rem;
    }
    
    .advantage-icon {
        width: 50px;
        height: 50px;
    }
    
    .advantage-icon i {
        font-size: 1.2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}
