* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #ffffff;
    min-height: 100vh;
}

.tirta-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.tirta-nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.tirta-logo {
    width: 200px;
    height: 60px;
    display: flex;
    align-items: center;
}

.tirta-company-name {
    font-size: 0.85rem;
    font-weight: 700;
    color: #333;
    line-height: 1.2;
    text-align: left;
}

.tirta-nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.tirta-nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-block;
}

.tirta-nav-menu a:hover,
.tirta-nav-active {
    color: #4f46e5;
    font-weight: 600;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(6, 182, 212, 0.1));
    padding: 8px 16px;
    border-radius: 20px;
    transform: translateY(-1px);
}

.tirta-nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #4f46e5, #06b6d4);
    transition: width 0.3s ease;
    border-radius: 1px;
}

.tirta-nav-menu a:hover::after,
.tirta-nav-active::after {
    width: 100%;
    box-shadow: 0 2px 8px rgba(79, 70, 229, 0.3);
}

.tirta-nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.tirta-nav-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

.tirta-main {
    margin-top: 80px;
}

.tirta-page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.tirta-page-hero::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)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.tirta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.tirta-page-hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.tirta-page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    background: linear-gradient(45deg, #ffffff, #e0e7ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tirta-page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.tirta-contact-main {
    padding: 80px 0;
    background: #ffffff;
}

.tirta-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.tirta-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #4f46e5, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tirta-section-subtitle {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.tirta-contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.tirta-contact-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f3f4f6;
    position: relative;
    overflow: hidden;
}

.tirta-contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4f46e5, #06b6d4);
}

.tirta-contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.tirta-contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tirta-contact-icon svg {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 4px 12px rgba(79, 70, 229, 0.3));
}

.tirta-contact-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 15px;
}

.tirta-contact-detail {
    font-size: 1.1rem;
    font-weight: 600;
    color: #4f46e5;
    margin-bottom: 10px;
}

.tirta-contact-desc {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* 表单部分样式 */
.tirta-form-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 80px 0;
}

.tirta-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.9);
    padding: 60px;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.tirta-form-header {
    text-align: center;
    margin-bottom: 40px;
}

.tirta-form-title {
    font-size: 2rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 15px;
    background: linear-gradient(45deg, #4f46e5, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tirta-form-subtitle {
    color: #6b7280;
    line-height: 1.6;
    font-size: 1rem;
}

.tirta-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.tirta-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.tirta-form-group {
    display: flex;
    flex-direction: column;
}

.tirta-form-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 8px;
}

.tirta-form-input,
.tirta-form-select,
.tirta-form-textarea {
    padding: 15px 18px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.tirta-form-input:focus,
.tirta-form-select:focus,
.tirta-form-textarea:focus {
    outline: none;
    border-color: #4f46e5;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.tirta-form-textarea {
    resize: vertical;
    min-height: 120px;
}

.tirta-form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.tirta-form-checkbox input[type="checkbox"] {
    margin-top: 4px;
    transform: scale(1.2);
}

.tirta-checkbox-label {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.6;
}

.tirta-privacy-link {
    color: #4f46e5;
    text-decoration: none;
    font-weight: 500;
}

.tirta-privacy-link:hover {
    text-decoration: underline;
}

.tirta-form-submit {
    background: linear-gradient(45deg, #4f46e5, #06b6d4);
    color: white;
    padding: 18px 35px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(79, 70, 229, 0.3);
}

.tirta-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(79, 70, 229, 0.4);
}

/* 办公室位置样式 */
.tirta-office-info {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.tirta-location-content {
    margin-top: 40px;
}

.tirta-location-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.tirta-location-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.tirta-location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.tirta-location-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 15px;
    background: linear-gradient(45deg, #4f46e5, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tirta-location-card p {
    color: #6b7280;
    line-height: 1.8;
    font-size: 0.95rem;
}

/* 服务网络样式 */
.tirta-service-network {
    padding: 80px 0;
    background: #ffffff;
}

.tirta-network-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.tirta-network-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f3f4f6;
    position: relative;
    overflow: hidden;
}

.tirta-network-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4f46e5, #06b6d4);
}

.tirta-network-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.tirta-network-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tirta-network-icon svg {
    width: 50px;
    height: 50px;
    filter: drop-shadow(0 4px 12px rgba(79, 70, 229, 0.3));
}

.tirta-network-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
}

.tirta-network-location {
    color: #4f46e5;
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 1rem;
}

.tirta-network-desc {
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.tirta-network-status {
    display: flex;
    justify-content: center;
}

.tirta-status-active {
    background: linear-gradient(45deg, #10b981, #06d6a0);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

/* 预约部分样式 */
.tirta-appointment {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.tirta-appointment-content {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.tirta-appointment-steps {
    margin-bottom: 50px;
}

.tirta-step-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    margin-bottom: 35px;
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.tirta-step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.tirta-step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #4f46e5, #06b6d4);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(79, 70, 229, 0.3);
}

.tirta-step-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 10px;
}

.tirta-step-content p {
    color: #6b7280;
    line-height: 1.7;
    font-size: 1rem;
}

.tirta-appointment-benefits {
    background: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.tirta-appointment-benefits h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 25px;
    background: linear-gradient(45deg, #4f46e5, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tirta-benefits-list {
    list-style: none;
    padding: 0;
}

.tirta-benefits-list li {
    padding: 12px 0;
    color: #6b7280;
    position: relative;
    padding-left: 30px;
    line-height: 1.7;
    font-size: 1rem;
}

.tirta-benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
    font-size: 1.2rem;
}



.tirta-emergency-contact {
    padding: 80px 0;
    background: #ffffff;
}

.tirta-emergency-banner {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    border-radius: 25px;
    padding: 40px;
    color: white;
    box-shadow: 0 20px 60px rgba(239, 68, 68, 0.3);
}

.tirta-emergency-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.tirta-emergency-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tirta-emergency-icon img {
    width: 35px;
    height: 35px;
}

.tirta-emergency-icon svg {
    width: 35px;
    height: 35px;
    filter: drop-shadow(0 4px 12px rgba(239, 68, 68, 0.3));
}

.tirta-emergency-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.tirta-emergency-text p {
    opacity: 0.9;
    line-height: 1.6;
}

.tirta-emergency-actions {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.tirta-emergency-btn,
.tirta-whatsapp-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.tirta-emergency-btn:hover,
.tirta-whatsapp-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.tirta-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #4f46e5 0%, #06b6d4 100%);
    color: white;
    text-align: center;
}

.tirta-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.tirta-cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.tirta-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.tirta-btn-primary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.tirta-btn-primary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.tirta-btn-outline {
    background: transparent;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.tirta-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-2px);
}

.tirta-footer {
    background: #1f2937;
    color: white;
    padding: 60px 0 20px;
}

.tirta-footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.tirta-footer-logo {
    width: 200px;
    height: 60px;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.tirta-footer-company-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    text-align: left;
}

.tirta-footer-desc {
    color: #d1d5db;
    line-height: 1.8;
    max-width: 400px;
}

.tirta-footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.tirta-footer-links {
    list-style: none;
}

.tirta-footer-links li {
    margin-bottom: 10px;
}

.tirta-footer-links a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.tirta-footer-links a:hover {
    color: #4f46e5;
}

.tirta-contact-info p {
    color: #d1d5db;
    margin-bottom: 8px;
    line-height: 1.6;
}

.tirta-footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 20px;
    text-align: center;
    color: #9ca3af;
}

/* Privacy Banner Styles */
.tirta-privacy-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1f2937;
    color: white;
    padding: 20px;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.tirta-privacy-banner.show {
    transform: translateY(0);
}

.tirta-privacy-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.tirta-privacy-text {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.5;
}

.tirta-privacy-text a {
    color: #4f46e5;
    text-decoration: none;
    font-weight: 500;
}

.tirta-privacy-text a:hover {
    text-decoration: underline;
}

.tirta-privacy-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.tirta-privacy-accept {
    background: linear-gradient(45deg, #4f46e5, #06b6d4);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.tirta-privacy-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(79, 70, 229, 0.3);
}

.tirta-privacy-close {
    background: transparent;
    border: 2px solid #6b7280;
    color: #6b7280;
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.tirta-privacy-close:hover {
    border-color: white;
    color: white;
}

@media (max-width: 768px) {
    .tirta-nav-menu {
        display: none;
    }

    .tirta-nav-toggle {
        display: flex;
    }

    .tirta-logo {
        width: 160px;
    }

    .tirta-company-name {
        font-size: 0.75rem;
    }

    .tirta-footer-logo {
        width: 180px;
    }

    .tirta-footer-company-name {
        font-size: 0.8rem;
    }

    .tirta-page-title {
        font-size: 2.5rem;
    }

    .tirta-section-title {
        font-size: 2rem;
    }

    .tirta-contact-cards {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 60px;
    }

    .tirta-contact-card {
        padding: 30px 25px;
    }

    .tirta-form-section {
        padding: 60px 0;
    }

    .tirta-form-container {
        padding: 40px 30px;
    }

    .tirta-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .tirta-location-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .tirta-location-card {
        padding: 25px;
    }

    .tirta-network-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .tirta-network-card {
        padding: 30px 25px;
    }

    .tirta-appointment-content {
        margin-top: 30px;
    }

    .tirta-appointment-steps {
        margin-bottom: 40px;
    }

    .tirta-step-item {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 25px 20px;
    }

    .tirta-appointment-benefits {
        padding: 30px 25px;
    }

    .tirta-emergency-content {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }

    .tirta-emergency-actions {
        justify-content: center;
    }

    .tirta-footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .tirta-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .tirta-logo {
        width: 140px;
    }

    .tirta-company-name {
        font-size: 0.7rem;
    }

    .tirta-footer-company-name {
        font-size: 0.75rem;
    }

    .tirta-page-title {
        font-size: 2rem;
    }

    .tirta-section-title {
        font-size: 1.8rem;
    }

    .tirta-form-title {
        font-size: 1.7rem;
    }

    .tirta-cta-title {
        font-size: 2rem;
    }

    .tirta-contact-card {
        padding: 25px 20px;
    }

    .tirta-contact-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }

    .tirta-contact-icon svg {
        width: 35px;
        height: 35px;
    }

    .tirta-form-container {
        padding: 30px 20px;
    }

    .tirta-location-card {
        padding: 20px;
    }

    .tirta-network-card {
        padding: 25px 20px;
    }

    .tirta-network-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }

    .tirta-network-icon svg {
        width: 40px;
        height: 40px;
    }

    .tirta-step-item {
        padding: 20px 15px;
    }

    .tirta-step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .tirta-appointment-benefits {
        padding: 25px 20px;
    }

    .tirta-emergency-banner {
        padding: 30px 20px;
    }

    .tirta-emergency-actions {
        flex-direction: column;
        width: 100%;
    }

    .tirta-emergency-btn,
    .tirta-whatsapp-btn {
        text-align: center;
    }
}