/* ===== WATER RECONNECTION PAGE ===== */

.water-reconnection-section {
    padding: 60px 0;
    background: #f8f9fa;
    min-height: calc(100vh - 200px);
}

.service-info-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

/* Quick Actions Section */
.quick-actions-section {
    margin-bottom: 40px;
}

.quick-action-card {
    background: white;
    border-radius: 16px;
    padding: 30px 25px;
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    height: 100%;
}

.quick-action-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 137, 208, 0.2);
    text-decoration: none;
    color: inherit;
}

.quick-action-card.phone-card:hover {
    border-color: #28a745;
}

.quick-action-card.download-card:hover {
    border-color: var(--primary-color);
}

.action-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
}

.phone-card .action-icon {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
}

.download-card .action-icon {
    background: var(--gradient-primary);
    color: white;
}

.info-card .action-icon {
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    color: white;
}

.action-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.action-content p {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
}

.action-phone {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    color: var(--primary-color) !important;
    margin: 5px 0 !important;
}

.action-time {
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    color: #ff9800 !important;
    margin: 5px 0 !important;
}

.action-label {
    display: inline-block;
    margin-top: 8px;
    padding: 4px 12px;
    background: #f0f0f0;
    border-radius: 12px;
    font-size: 0.85rem;
    color: #666;
}

/* Steps Section with Timeline - Horizontal */
.steps-section {
    margin-bottom: 40px;
}

.steps-card {
    background: linear-gradient(135deg, rgba(26, 176, 251, 0.05) 0%, rgba(27, 58, 112, 0.05) 100%);
    border-radius: 16px;
    padding: 40px;
    border: 2px solid var(--primary-color);
}

.steps-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 40px;
    display: flex;
    align-items: center;
}

.steps-timeline {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px 0;
    gap: 20px;
}

.step-item {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.step-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 30px;
    left: calc(50% + 30px);
    width: calc(100% - 60px);
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color) 0%, rgba(0, 137, 208, 0.3) 100%);
    z-index: 1;
}

.step-connector {
    display: none;
}

.step-circle {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: white;
    border: 4px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0, 137, 208, 0.2);
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.step-circle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 137, 208, 0.4);
}

.step-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.step-details {
    width: 100%;
    padding-top: 0;
}

.step-details h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.step-details p {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Template Section - Compact Design with Left Icon */
.template-section {
    background: white;
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--primary-color);
    margin-bottom: 40px;
}

.template-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
}

.template-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.template-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 20px;
}

.template-card:hover {
    border-color: var(--primary-color);
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 137, 208, 0.15);
    text-decoration: none;
    color: inherit;
}

.template-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    background: white;
    border: 3px solid var(--primary-color);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.template-card:hover .template-icon-box {
    background: var(--primary-color);
    color: white;
    transform: scale(1.05);
}

.template-content {
    flex: 1;
    min-width: 0;
}

.template-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 6px;
}

.template-content p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 12px;
    line-height: 1.5;
}

.template-download {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-primary);
    color: white;
    padding: 8px 18px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 137, 208, 0.2);
}

.template-card:hover .template-download {
    background: linear-gradient(135deg, #0052a3 0%, #003580 100%);
    box-shadow: 0 4px 12px rgba(0, 137, 208, 0.3);
    transform: translateY(-1px);
}

/* Info Tabs Wrapper */
.info-tabs-wrapper {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-bottom: 30px;
    display: flex;
    align-items: stretch;
    min-height: 400px;
}

/* Vertical Tabs Navigation */
.vertical-tabs-nav {
    background: #f8f9fa;
    padding: 20px 0;
    border-right: 2px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    flex: 0 0 25%;
    min-height: 100%;
    align-self: stretch;
}

.tab-nav-item {
    width: 100%;
    background: transparent;
    border: none;
    padding: 18px 25px;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #666;
    font-size: 0.95rem;
    font-weight: 500;
    border-left: 4px solid transparent;
}

.tab-nav-item:hover {
    background: #e9ecef;
    color: var(--primary-color);
}

.tab-nav-item.active {
    background: white;
    color: var(--primary-color);
    border-left-color: var(--primary-color);
    font-weight: 600;
}

.tab-nav-item i {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.tab-nav-item span {
    flex: 1;
}

/* Tab Content */
.tab-content-wrapper {
    flex: 1;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-self: stretch;
}

.tab-content {
    display: none;
    padding: 40px;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab-panel {
    color: #333;
}

.tab-panel-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary-color);
}

.fee-content {
    padding: 30px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.fee-content p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

/* Section Intro */
.section-intro {
    margin-bottom: 25px;
    color: #555;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Highlight Section */
.highlight-section {
    border-left: 4px solid #28a745;
}

.highlight-section .section-title {
    color: #28a745;
}

/* Method Cards */
.method-cards {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 20px;
    max-width: 900px;
}

.method-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    align-items: stretch;
}

.method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 137, 208, 0.15);
}

.method-card-header {
    padding: 30px 25px;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 12px;
    margin: 0;
    width: 200px;
    min-height: 140px;
    flex-shrink: 0;
}

.method-card-header i {
    font-size: 2.2rem;
    flex-shrink: 0;
    margin-bottom: 4px;
}

.method-header-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.method-number {
    font-size: 0.85rem;
    font-weight: 600;
    opacity: 0.9;
    letter-spacing: 0.5px;
}

.method-card-header h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.5;
    text-align: left;
}

.phone-method {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.online-method {
    background: var(--gradient-primary);
}

.offline-method {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
}

.method-card-body {
    padding: 30px 35px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.method-description {
    color: #555;
    margin-bottom: 18px;
    line-height: 1.7;
    font-size: 0.95rem;
}

.method-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 137, 208, 0.15);
    margin-bottom: 12px;
    gap: 8px;
    width: fit-content;
}

.method-action-btn:hover {
    background: linear-gradient(135deg, #0052a3 0%, #003580 100%);
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(0, 137, 208, 0.25);
    color: white;
    text-decoration: none;
}

.method-action-btn i {
    font-size: 0.9rem;
}

.website-links {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.method-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.method-link:hover {
    color: #0052a3;
    text-decoration: underline;
}

.separator {
    color: #999;
    font-size: 0.9rem;
}

.method-note {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
    display: flex;
    align-items: center;
}

.method-note i {
    color: var(--primary-color);
}

/* Location Accordion */
.location-accordion {
    margin-top: 15px;
}

.location-toggle-btn {
    width: 100%;
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 20px;
    text-align: left;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.location-toggle-btn:hover {
    background: #e9ecef;
    border-color: var(--primary-color);
}

.location-toggle-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.location-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: none;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
}

.location-list li {
    margin-bottom: 15px;
    padding: 12px;
    background: white;
    border-radius: 6px;
    border-left: 3px solid var(--primary-color);
    line-height: 1.7;
}

.location-list li:last-child {
    margin-bottom: 0;
}

.location-list li strong {
    color: var(--primary-color);
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

/* Document Card */
.document-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.document-icon {
    font-size: 3rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.document-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.document-content p {
    margin: 0;
    color: #666;
    line-height: 1.7;
}

/* Timeline Card */
.timeline-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #ff9800;
}

.timeline-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(255, 152, 0, 0.3);
}

.timeline-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff9800;
    margin-bottom: 8px;
}

.timeline-content p {
    margin: 5px 0;
    color: #666;
    line-height: 1.7;
}

.timeline-note {
    margin-top: 15px !important;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
    font-size: 0.9rem !important;
    color: #888 !important;
}

.timeline-note i {
    color: #ff9800;
}

/* Template Icon Wrapper */
.template-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 137, 208, 0.3);
}

.template-description {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
    font-style: italic;
}

/* Info Section */
.info-section {
    background: white;
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.info-section:hover {
    box-shadow: 0 6px 24px rgba(0, 137, 208, 0.15);
    transform: translateY(-2px);
}

.section-header {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary-color);
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-title i {
    font-size: 1.4rem;
    color: var(--primary-color);
}

.section-content {
    color: #333;
    line-height: 1.8;
    font-size: 1rem;
}

/* Method List */
.method-list {
    list-style: decimal;
    padding-left: 25px;
    margin: 0;
}

.method-list > li {
    margin-bottom: 20px;
    padding-left: 10px;
}

.method-list > li:last-child {
    margin-bottom: 0;
}

.method-list strong {
    color: var(--primary-color);
    font-size: 1.05rem;
}

.sub-text {
    margin: 10px 0;
    color: #666;
    font-size: 0.95rem;
}

.location-list li {
    margin-bottom: 12px;
    padding-left: 5px;
    line-height: 1.7;
}

.location-list li strong {
    color: #333;
    font-weight: 600;
}

/* Document List */
.document-list {
    list-style: disc;
    padding-left: 25px;
    margin: 0;
}

.document-list li {
    margin-bottom: 10px;
    padding-left: 5px;
    line-height: 1.8;
}

/* Template List */
.template-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.template-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.template-item:hover {
    border-color: var(--primary-color);
    background: #f0f8ff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 137, 208, 0.15);
}

.template-info {
    flex: 1;
}

.template-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.5;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    background: var(--gradient-primary);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 137, 208, 0.2);
}

.btn-download:hover {
    background: linear-gradient(135deg, #0052a3 0%, #003580 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 137, 208, 0.3);
    color: white;
}

.btn-download:active {
    transform: translateY(0);
}

/* Condition List */
.condition-list {
    list-style: disc;
    padding-left: 25px;
    margin: 0;
}

.condition-list li {
    margin-bottom: 15px;
    padding-left: 5px;
    line-height: 1.8;
}

.condition-list li:last-child {
    margin-bottom: 0;
}

/* Legal List */
.legal-list {
    list-style: disc;
    padding-left: 25px;
    margin: 0;
}

.legal-list li {
    margin-bottom: 15px;
    padding-left: 5px;
    line-height: 1.8;
    color: #555;
}

.legal-list li:last-child {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .info-tabs-wrapper {
        flex-direction: column;
        min-height: auto;
    }

    .vertical-tabs-nav {
        border-right: none;
        border-bottom: 2px solid #e0e0e0;
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        padding: 15px;
        gap: 10px;
        min-height: auto;
        flex: none;
    }

    .tab-content-wrapper {
        min-height: auto;
    }

    .tab-nav-item {
        white-space: nowrap;
        flex-shrink: 0;
        border-left: none;
        border-bottom: 3px solid transparent;
        padding: 12px 20px;
    }

    .tab-nav-item.active {
        border-left: none;
        border-bottom-color: var(--primary-color);
    }

    .tab-content-wrapper {
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .water-reconnection-section {
        padding: 40px 0;
    }

    .quick-actions-section {
        margin-bottom: 30px;
    }

    .quick-action-card {
        padding: 25px 20px;
    }

    .action-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }

    .action-phone {
        font-size: 1.3rem !important;
    }

    .action-time {
        font-size: 1.1rem !important;
    }

    .steps-card {
        padding: 30px 20px;
    }

    .steps-timeline {
        flex-wrap: wrap;
        gap: 30px;
    }

    .step-item:not(:last-child)::after {
        display: none;
    }

    .step-item {
        flex: 0 0 calc(50% - 15px);
    }

    .step-circle {
        width: 50px;
        height: 50px;
    }

    .step-number {
        font-size: 1.3rem;
    }

    .step-details h3 {
        font-size: 1.1rem;
    }

    .step-details p {
        font-size: 0.9rem;
    }

    .template-grid {
        grid-template-columns: 1fr;
    }

    .method-cards {
        gap: 20px;
    }

    .info-section {
        padding: 30px 20px;
        margin-bottom: 20px;
    }

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

    .section-title i {
        font-size: 1.2rem;
    }

    .section-content {
        font-size: 0.95rem;
    }

    .template-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 25px 20px;
    }

    .template-icon-wrapper {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .template-info h4 {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .btn-download {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
    }

    .document-card,
    .timeline-card {
        flex-direction: column;
        text-align: center;
    }

    .document-icon,
    .timeline-icon {
        align-self: center;
    }

    .document-list,
    .condition-list,
    .legal-list {
        padding-left: 20px;
    }

    .website-links {
        flex-direction: column;
        align-items: flex-start;
    }

    .separator {
        display: none;
    }
}

@media (max-width: 576px) {
    .quick-action-card {
        padding: 20px 15px;
        flex-direction: column;
        text-align: center;
    }

    .action-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .steps-card {
        padding: 25px 15px;
    }

    .steps-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }

    .steps-timeline {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
        padding: 10px 0;
    }

    .step-item {
        flex: 1;
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
        width: 100%;
        padding-left: 50px;
        position: relative;
    }

    .step-item:not(:last-child)::after {
        display: block;
        top: 30px;
        left: 30px;
        width: 3px;
        height: calc(100% + 10px);
        background: linear-gradient(180deg, var(--primary-color) 0%, rgba(0, 137, 208, 0.3) 100%);
    }

    .step-circle {
        width: 45px;
        height: 45px;
        margin-bottom: 0;
        margin-right: 20px;
        position: absolute;
        left: 0;
        top: 0;
    }

    .step-number {
        font-size: 1.2rem;
    }

    .step-details {
        padding-left: 0;
    }

    .step-details h3 {
        font-size: 1.1rem;
    }

    .step-details p {
        font-size: 0.9rem;
    }

    .template-section {
        padding: 25px 20px;
    }

    .template-section-title {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }

    .template-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .template-card {
        padding: 18px;
        gap: 15px;
        flex-direction: column;
        text-align: center;
    }

    .template-icon-box {
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
        margin: 0 auto;
    }

    .template-content {
        width: 100%;
    }

    .template-content h3 {
        font-size: 1.1rem;
    }

    .template-content p {
        font-size: 0.85rem;
        margin-bottom: 12px;
    }

    .template-download {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .vertical-tabs-nav {
        padding: 15px 0;
    }

    .tab-nav-item {
        padding: 15px 20px;
        font-size: 0.9rem;
    }

    .tab-content {
        padding: 30px 20px;
    }

    .tab-panel-title {
        font-size: 1.5rem;
    }

    .info-section {
        padding: 25px 15px;
    }

    .section-title {
        font-size: 1.2rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .section-header {
        margin-bottom: 20px;
        padding-bottom: 12px;
    }

    .method-card {
        flex-direction: column;
    }
    
    .method-card-header {
        padding: 20px 25px;
        width: 100%;
        min-height: auto;
        flex-direction: row;
        align-items: center;
        gap: 12px;
    }
    
    .method-card-header i {
        font-size: 1.5rem;
        margin-bottom: 0;
    }
    
    .method-header-text {
        gap: 3px;
    }
    
    .method-number {
        font-size: 0.8rem;
    }
    
    .method-card-header h3 {
        font-size: 1.05rem;
    }
    
    .method-card-body {
        padding: 20px 25px;
    }
    
    .method-description {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .method-action-btn {
        padding: 9px 18px;
        font-size: 0.95rem;
        margin-bottom: 10px;
    }
    
    .method-action-btn i {
        font-size: 0.85rem;
    }

    .location-list li {
        margin-bottom: 10px;
        font-size: 0.9rem;
        padding: 10px;
    }

    .document-card,
    .timeline-card {
        padding: 20px 15px;
    }

    .document-icon,
    .timeline-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .timeline-content h3 {
        font-size: 1.3rem;
    }

    .template-info h4 {
        font-size: 0.95rem;
    }

    .btn-download {
        font-size: 0.9rem;
        padding: 10px 16px;
    }
}

