/* Service Page Responsive Styles */

/* General Content Styles */
.page-section {
    padding: 40px 0;
}

.history-content {
    padding: 20px;
}

.history-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.history-content .lead {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 2rem;
}

/* Section Styles */
.history-section {
    margin-bottom: 3rem;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.history-section h3 {
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    position: relative;
    padding-bottom: 10px;
}

.history-section h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #FF6B6B;
}

/* Benefits Section */
.history-fact {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    height: 100%;
    transition: transform 0.3s ease;
}

.history-fact:hover {
    transform: translateY(-5px);
}

.history-fact h4 {
    color: #FF6B6B;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.history-fact ul {
    list-style: none;
    padding-left: 0;
}

.history-fact ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #666;
}

.history-fact ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #FF6B6B;
    font-weight: bold;
}

/* Quote Section */
.history-quote {
    background: #f8f9fa;
    padding: 20px;
    border-left: 4px solid #FF6B6B;
    margin-bottom: 1.5rem;
    font-style: italic;
    color: #666;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .history-content h1 {
        font-size: 2rem;
    }

    .history-section {
        margin-bottom: 2rem;
    }

    .history-fact {
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .page-section {
        padding: 30px 0;
    }

    .history-content {
        padding: 15px;
    }

    .history-content h1 {
        font-size: 1.8rem;
    }

    .history-content .lead {
        font-size: 1.1rem;
    }

    .history-section {
        padding: 15px;
    }

    .history-section h3 {
        font-size: 1.5rem;
    }

    .history-fact {
        padding: 15px;
    }

    .history-fact h4 {
        font-size: 1.2rem;
    }

    .history-quote {
        padding: 15px;
    }
}

@media (max-width: 575px) {
    .history-content h1 {
        font-size: 1.6rem;
    }

    .history-section {
        margin-bottom: 1.5rem;
    }

    .history-fact ul li {
        font-size: 0.9rem;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Breadcrumb Styles */
.ht__bradcaump__area {
    padding: 30px 0;
    background: #f8f9fa;
}

.bradcaump-title {
    font-size: 2rem;
    color: #333;
    margin-bottom: 10px;
}

.bradcaump-inner {
    color: #666;
}

.bradcaump-inner a {
    color: #FF6B6B;
    text-decoration: none;
}

.brd-separetor {
    margin: 0 10px;
}

@media (max-width: 767px) {
    .ht__bradcaump__area {
        padding: 20px 0;
    }

    .bradcaump-title {
        font-size: 1.5rem;
    }
} 