/* Service Page Styles */
.service-page {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.service-page .heading-title {
    color: #212529;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
}

.service-page .heading-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #50bfda;
    border-radius: 2px;
}

.service-content {
    padding: 20px 0;
}

.section-title {
    color: #50bfda;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #50bfda;
    border-radius: 2px;
}

.section-subtitle {
    color: #212529;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.service-text {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.highlight-quote {
    background-color: #e3f2fd;
    border-left: 4px solid #50bfda;
    padding: 20px;
    margin: 25px 0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(80, 191, 218, 0.1);
}

.highlight-quote p {
    color: #1976d2;
    font-size: 1.1rem;
    margin: 0;
    font-weight: 500;
}

.service-image {
    padding: 20px 0;
}

.service-image img {
    max-width: 100%;
    height: auto;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-image img:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

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

.service-list li {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #50bfda;
    font-weight: bold;
    font-size: 1.1rem;
}

.price-highlight {
    color: #e21111;
    font-weight: 600;
    background-color: #fff3cd;
    padding: 2px 6px;
    border-radius: 4px;
}

.service-section {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    border: 1px solid rgba(80, 191, 218, 0.1);
}

.info-card {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    height: 100%;
    border: 1px solid rgba(80, 191, 218, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0,0,0,0.12);
}

.info-title {
    color: #212529;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

.info-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #50bfda;
    border-radius: 1px;
}

.info-text {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.info-note {
    color: #e21111;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-top: 20px;
    background-color: #fff3cd;
    padding: 12px;
    border-radius: 6px;
    border-left: 3px solid #e21111;
}

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

.info-list li {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.info-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: #50bfda;
    font-weight: bold;
    font-size: 1.2rem;
}

.main-quote {
    background-color: #50bfda;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 6px 24px rgba(80, 191, 218, 0.3);
    position: relative;
    overflow: hidden;
}

.main-quote::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.2);
    font-family: serif;
}

.main-quote blockquote {
    margin: 0;
    padding: 0;
    border: none;
}

.main-quote blockquote p {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.privacy-notice {
    background-color: #e3f2fd;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #50bfda;
    box-shadow: 0 2px 8px rgba(80, 191, 218, 0.1);
}

.privacy-notice p {
    color: #1976d2;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .service-page {
        padding: 40px 0;
    }

    .service-page .heading-title {
        font-size: 2rem;
    }

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

    .main-quote {
        padding: 30px 20px;
    }

    .main-quote blockquote p {
        font-size: 1.5rem;
    }

    .service-section,
    .info-card {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .service-page .heading-title {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.3rem;
    }

    .main-quote blockquote p {
        font-size: 1.3rem;
    }

    .service-text,
    .info-text {
        font-size: 0.95rem;
    }
}