/* 临时隐藏语言选择器 - 只显示繁体中文 */
.language-switcher {
    display: none !important;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #000;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background-color: #FF8C00;
    color: white;
    border: none;
}

.btn-primary:hover {
    background-color: #FF7700;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #666;
    color: white;
}

.btn-secondary:hover {
    background-color: #FF8C00;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: #FF8C00;
    border: 2px solid #FF8C00;
}

.btn-outline:hover {
    background-color: #FF8C00;
    color: white;
    transform: translateY(-2px);
}

/* Header Styles */
.header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.logo h2 {
    color: #000;
    font-size: 1.5rem;
    font-weight: 700;
}

.logo a {
    display: inline-block;
    transition: transform 0.3s ease;
}

.logo a:hover {
    transform: scale(1.05);
}

.logo a:hover .logo-img {
    opacity: 0.8;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #FF8C00;
}

/* Navigation Right Side */
.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.language-switcher {
    position: relative;
}

.language-select {
    background-color: #fff;
    border: 2px solid #e8e8e8;
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 14px;
    color: #000;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.language-select:hover {
    border-color: #000;
}

.language-select:focus {
    outline: none;
    border-color: #FF8C00;
}

.login-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 10px 20px;
    background-color: #000;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.login-btn:hover {
    background-color: #333;
    transform: translateY(-2px);
}

.login-btn i {
    font-size: 14px;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    border-radius: 8px;
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    border-bottom: 1px solid #f1f1f1;
}

.dropdown-menu a:hover {
    background-color: #FFF5E6;
    color: #FF8C00;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background-color: #000;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%);
    padding: 4rem 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 2rem;
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.hero-placeholder {
    background-color: #e8e8e8;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    color: #333;
    font-weight: 600;
}

.hero-placeholder i {
    font-size: 3rem;
    color: #666;
    margin-bottom: 1rem;
}

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

.cta-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
}

.cta-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.cta-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #000;
}

.cta-card p {
    color: #333;
    margin-bottom: 1.5rem;
}

/* Trusted By */
.trusted-by {
    background-color: #f9f9f9;
    padding: 2rem 0;
}

.trusted-by p {
    text-align: center;
    color: #333;
    margin-bottom: 1rem;
}

.trusted-logos {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.logo-placeholder {
    background-color: #e8e8e8;
    color: #666;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
}

/* Free Registration */
.free-registration {
    padding: 4rem 0;
    background-color: #f9f9f9;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.section-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.image-placeholder {
    background-color: #e8e8e8;
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
}

.image-placeholder i {
    font-size: 4rem;
    color: #666;
    margin-bottom: 1rem;
}

.text-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #000;
}

.text-section p {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 1rem;
}

.highlight {
    color: #FF8C00;
    font-weight: 700;
}

/* Why Choose Us */
.why-choose-us {
    padding: 4rem 0;
    background-color: white;
}

.why-choose-us h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #000;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e8e8e8;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: #f9f9f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #000;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #000;
}

.feature-card p {
    color: #333;
    margin-bottom: 1.5rem;
}

.learn-more {
    text-align: center;
}

/* Featured In */
.featured-in {
    background-color: #f9f9f9;
    padding: 2rem 0;
    text-align: center;
}

.featured-in p {
    color: #333;
    margin-bottom: 1rem;
}

.media-logos {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.media-logo {
    background-color: white;
    color: #000;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    border: 1px solid #e8e8e8;
}

/* Legal Professional */
.legal-professional {
    background-color: #000;
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.legal-professional h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.legal-professional p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.legal-professional .btn-primary {
    background-color: #FF8C00;
    color: white;
    border: none;
}

.legal-professional .btn-primary:hover {
    background-color: #FF7700;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
}

/* Resources */
.resources {
    padding: 4rem 0;
    background-color: white;
}

.resources h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #000;
}

.guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.guide-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e8e8e8;
}

.guide-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    border-left: 4px solid #FF8C00;
}

.guide-label {
    background-color: #f9f9f9;
    color: #000;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.guide-card h3 {
    font-size: 1.2rem;
    margin: 1rem 0;
    color: #000;
}

.read-more {
    color: #FF8C00;
    text-decoration: none;
    font-weight: 600;
}

.read-more:hover {
    color: #FF7700;
    text-decoration: underline;
}

.see-more {
    text-align: center;
}

/* Customer Feedback */
.customer-feedback {
    background-color: #f9f9f9;
    padding: 4rem 0;
}

.customer-feedback h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #000;
}

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

.testimonial {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.testimonial::before {
    content: '"';
    font-size: 4rem;
    color: #e8e8e8;
    line-height: 1;
    display: block;
    text-align: left;
    margin-bottom: -1rem;
}

.testimonial blockquote {
    font-style: italic;
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.testimonial cite {
    color: #666;
    font-weight: 600;
    font-style: normal;
}

/* Footer */
.footer {
    background-color: #000;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-main h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: #ccc;
}

.contact-info i {
    margin-right: 0.5rem;
    color: white;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3.5rem;
}

.footer-column h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom-left {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.footer-bottom-left a {
    color: #ccc;
    text-decoration: none;
}

.footer-bottom-left span {
    color: #666;
}

.footer-bottom-right {
    display: flex;
    gap: 1rem;
}

.footer-bottom-right a {
    color: #ccc;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.footer-bottom-right a:hover {
    color: white;
}

/* Search Page Styles */
.search-page {
    padding: 4rem 0;
    background-color: #fff;
}

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

.page-title {
    font-size: 3rem;
    color: #000;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-description {
    font-size: 1.2rem;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
}

.search-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.search-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
    border: 1px solid #e8e8e8;
    transition: all 0.3s ease;
}

.search-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.professional-card {
    position: relative;
}

.professional-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background-color: #FF8C00;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.search-icon {
    width: 80px;
    height: 80px;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: #333;
}

.search-card h3 {
    font-size: 1.8rem;
    color: #000;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.search-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
    text-align: left;
}

.search-card .btn {
    width: 100%;
    padding: 15px 20px;
    font-size: 1.1rem;
    font-weight: 600;
}

/* How to Use Section */
.how-to-use-section {
    background-color: #f9f9f9;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 4rem;
}

.how-to-use-section h2 {
    font-size: 2.2rem;
    color: #000;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.instant-support {
    display: flex;
    justify-content: center;
}

.instant-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 15px 30px;
    font-size: 1.1rem;
    background-color: #FF8C00;
    color: white;
    border: none;
}

.instant-btn:hover {
    background-color: #FF7700;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
}

.instant-btn i {
    transition: transform 0.3s ease;
}

.instant-btn:hover i {
    transform: translateX(5px);
}

/* Features Section */
.features-section {
    margin-top: 4rem;
}

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

.feature-item {
    text-align: center;
    padding: 2rem 1rem;
}

.feature-icon-container {
    width: 80px;
    height: 80px;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #333;
}

.feature-item h4 {
    font-size: 1.3rem;
    color: #000;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
}

/* Search Form Page Styles */
.search-form-page {
    padding: 2rem 0 4rem;
    background-color: #f9f9f9;
    min-height: 100vh;
}

/* Back Button */
.back-button-container {
    margin-bottom: 2rem;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.back-button:hover {
    color: #FF8C00;
}

.back-button i {
    font-size: 0.9rem;
}

/* Page Header */
.search-form-page .page-header {
    text-align: center;
    margin-bottom: 3rem;
}

.search-form-page .page-title {
    font-size: 2.5rem;
    color: #000;
    font-weight: 700;
    margin-bottom: 1rem;
}

.search-form-page .page-description {
    font-size: 1rem;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Form Section */
.search-form-section {
    margin-bottom: 3rem;
}

.form-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
}

.form-header {
    background-color: #f8f9fa;
    padding: 2rem;
    border-bottom: 1px solid #e9ecef;
}

.form-header h2 {
    font-size: 1.5rem;
    color: #000;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Form Styles */
.private-search-form,
.professional-search-form {
    padding: 2rem;
}

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

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

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

.required {
    color: #dc3545;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background-color: #fff;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #FF8C00;
    box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.1);
}

.form-group input::placeholder {
    color: #adb5bd;
}

.field-note {
    display: block;
    color: #6c757d;
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

/* File Upload Styles */
.file-upload-group {
    margin-bottom: 2rem;
}

.file-upload-container {
    position: relative;
}

.file-upload-container input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.file-upload-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    background-color: #fff;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.file-upload-label:hover {
    border-color: #FF8C00;
}

.file-upload-text {
    color: #adb5bd;
    font-size: 1rem;
}

.file-upload-button {
    background-color: #000000;
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Search Conditions Section */
.search-conditions {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
    border: 1px solid #e9ecef;
}

.search-conditions h3 {
    font-size: 1.2rem;
    color: #000;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.condition-fields {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

/* Checkbox Styles */
.checkbox-group {
    margin: 2rem 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

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

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

/* Security Notice */
.security-notice {
    background: linear-gradient(135deg, #f5f5f5 0%, #e9e9e9 100%);
    border-left: 4px solid #666;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.notice-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.notice-content i {
    color: #666;
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.notice-content p {
    color: #333;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Submit Button */
.form-actions {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e9ecef;
}

.btn-search {
    background: linear-gradient(135deg, #FF8C00 0%, #FF7700 100%);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
}

.btn-search:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
}

.btn-search i {
    margin-right: 0.5rem;
}

/* Notes Section */
.notes-section {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.notes-section h3 {
    font-size: 1.3rem;
    color: #000;
    margin-bottom: 1rem;
    font-weight: 600;
}

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

.notes-list li {
    padding: 0.75rem 0;
    position: relative;
    padding-left: 1.5rem;
    color: #333;
    line-height: 1.5;
}

.notes-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #FF8C00;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Professional Notice (if needed) */
.professional-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: #000;
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    margin: 1rem auto;
    max-width: fit-content;
    font-weight: 600;
}

.professional-notice i {
    font-size: 1.2rem;
}

/* Will Registration Styles */
.will-registration {
    padding: 2rem 0 4rem;
    background-color: #f9f9f9;
    min-height: 100vh;
}

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

.registration-title {
    font-size: 2.5rem;
    color: #000;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.registration-subtitle {
    font-size: 1rem;
    color: #333;
    margin: 0;
}

/* Progress Bar Styles */
.progress-container {
    margin-bottom: 3rem;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    position: relative;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    position: relative;
    max-width: 200px;
}

.progress-step::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    right: -50%;
    height: 2px;
    background-color: #e9ecef;
    z-index: 1;
}

.progress-step:last-child::before {
    display: none;
}

.progress-step.completed::before,
.progress-step.active::before {
    background-color: #FFA500;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #e9ecef;
    color: #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.progress-step.active .step-number {
    background-color: #FFA500;
    color: white;
    box-shadow: 0 0 0 4px rgba(255, 165, 0, 0.2);
}

.progress-step.completed .step-number {
    background-color: #28a745;
    color: white;
}

.step-info h4 {
    font-size: 0.95rem;
    color: #000;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.step-info p {
    font-size: 0.8rem;
    color: #6c757d;
    margin: 0;
    line-height: 1.3;
}

.progress-step.active .step-info h4 {
    color: #FF8C00;
}

.progress-bar {
    height: 4px;
    background-color: #e9ecef;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #FFA500 0%, #FF8C00 100%);
    border-radius: 2px;
    transition: width 0.5s ease;
}

/* Step Content */
.step-content {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.step-title {
    font-size: 1.8rem;
    color: #000;
    margin-bottom: 2rem;
    font-weight: 700;
    text-align: center;
}

/* Registration Form Styles */
.registration-form {
    max-width: 800px;
    margin: 0 auto;
}

.registration-form .form-group {
    margin-bottom: 1.5rem;
}

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

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

.registration-form input,
.registration-form select,
.registration-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background-color: #fff;
}

.registration-form input:focus,
.registration-form select:focus,
.registration-form textarea:focus {
    outline: none;
    border-color: #FF8C00;
    box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.1);
}

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

/* Beneficiaries Section */
.beneficiaries-section {
    margin-bottom: 2rem;
}

.beneficiaries-section h3 {
    font-size: 1.3rem;
    color: #000;
    margin-bottom: 1rem;
    font-weight: 600;
}

.beneficiaries-notice {
    background-color: #f5f5f5;
    border: 1px solid #e9e9e9;
    border-radius: 8px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.beneficiaries-notice i {
    color: #333;
    font-size: 1.5rem;
}

.beneficiaries-notice p {
    color: #333;
    margin: 0;
}

.beneficiaries-list {
    margin-top: 1rem;
}

.beneficiary-item {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.beneficiary-info h4 {
    color: #000;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.beneficiary-info p {
    margin: 0.25rem 0;
    color: #555;
    font-size: 0.9rem;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
}

.btn-danger {
    background-color: #dc3545;
    color: white;
    border: none;
}

.btn-danger:hover {
    background-color: #c82333;
}

/* Add Beneficiary Section */
.add-beneficiary-section {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.add-beneficiary-section h3 {
    font-size: 1.3rem;
    color: #000;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

/* Info Sections */
.info-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e9ecef;
}

.info-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.info-section h3 {
    font-size: 1.3rem;
    color: #000;
    margin-bottom: 0.5rem;
    font-weight: 600;
    border-left: 4px solid #FFA500;
    padding-left: 1rem;
}

.section-description {
    color: #6c757d;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* Upload Styles */
.upload-options {
    margin-bottom: 2rem;
}

.upload-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.upload-tab {
    padding: 12px 24px;
    border: 2px solid #e9ecef;
    background-color: #fff;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.upload-tab.active {
    border-color: #FF8C00;
    background-color: #FFF5E6;
    color: #FF8C00;
}

.upload-tab:hover {
    border-color: #FF8C00;
}

.upload-content {
    display: none;
}

.upload-content.active {
    display: block;
}

.main-upload {
    margin: 2rem 0;
}

.file-upload-area {
    text-align: center;
}

.file-upload-container.large {
    min-height: 150px;
    border: 2px dashed #e9ecef;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    transition: all 0.3s ease;
}

.file-upload-container.large:hover {
    border-color: #FF8C00;
    background-color: #FFF5E6;
}

.file-upload-container.large .file-upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.upload-icon {
    font-size: 3rem;
    color: #6c757d;
}

.upload-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.file-upload-note {
    margin-top: 1rem;
    color: #6c757d;
    font-size: 0.9rem;
}

.security-confirmation {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 2rem;
}

/* Payment Styles */
.payment-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.service-summary {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 2rem;
    height: fit-content;
}

.service-summary h3 {
    font-size: 1.3rem;
    color: #000;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #dee2e6;
}

.service-details h4 {
    font-size: 1.1rem;
    color: #000;
    margin: 0;
}

.service-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #000;
}

.service-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    font-size: 1.3rem;
    font-weight: 700;
    color: #000;
}

.service-includes {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: #f5f5f5;
    border-radius: 8px;
}

.service-includes h4 {
    color: #333;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.service-includes li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    color: #333;
}

.service-includes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #333;
    font-weight: bold;
}

.payment-section {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.payment-section h3 {
    font-size: 1.3rem;
    color: #000;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.payment-methods h4 {
    font-size: 1.1rem;
    color: #000;
    margin-bottom: 1rem;
    font-weight: 600;
}

.payment-option {
    margin-bottom: 1rem;
}

.payment-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-label:hover {
    border-color: #FF8C00;
}

.payment-label input[type="radio"] {
    display: none;
}

.payment-radio {
    width: 20px;
    height: 20px;
    border: 2px solid #e9ecef;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
}

.payment-label input[type="radio"]:checked + .payment-radio {
    border-color: #FF8C00;
}

.payment-label input[type="radio"]:checked + .payment-radio::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background-color: #FF8C00;
    border-radius: 50%;
}

.payment-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.payment-info i {
    font-size: 1.2rem;
    color: #6c757d;
}

.card-icons {
    display: flex;
    gap: 0.5rem;
    margin-left: auto;
}

.card-icons img {
    height: 20px;
    width: auto;
}

.credit-card-details {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.security-notice {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #e8f5e8;
    border-radius: 6px;
    margin-bottom: 1.5rem;
    color: #2e7d2e;
}

.card-icons-inline {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 4px;
}

.card-icons-inline img {
    height: 16px;
    width: auto;
}

.cvc-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
}

.form-group {
    position: relative;
}

.terms-agreement {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

/* Navigation Buttons */
.step-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e9ecef;
}

.btn-next {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-payment {
    background: linear-gradient(135deg, #FF8C00 0%, #FF7700 100%);
    color: white;
    font-size: 1.1rem;
    padding: 15px 30px;
    font-weight: 600;
    border: none;
}

.btn-payment:hover {
    background: linear-gradient(135deg, #FF7700 0%, #FF6600 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-right {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    /* Mobile Navigation Menu Active State */
    .nav-menu.active {
        display: flex !important;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        box-shadow: 0 4px 20px rgba(0,0,0,0.15);
        padding: 1rem;
        gap: 0;
        z-index: 1000;
    }
    
    .nav-menu.active li {
        margin: 0;
        border-bottom: 1px solid #f1f1f1;
    }
    
    .nav-menu.active li:last-child {
        border-bottom: none;
    }
    
    .nav-menu.active a {
        display: block;
        padding: 15px 0;
        color: #000;
        text-decoration: none;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .search-options {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-img {
        max-height: 300px;
        object-fit: cover;
    }
    
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .section-img {
        max-height: 250px;
        object-fit: cover;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .guides-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr 2fr;
        gap: 3rem;
        margin-bottom: 2rem;
    }
    
    .footer-links {
        grid-template-columns: repeat(3, 1fr);
        gap: 3.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .search-form-container {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .condition-fields {
        grid-template-columns: 1fr;
    }
    
    .form-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .form-actions .btn {
        width: 100%;
    }
    
    /* Will Registration Mobile Styles */
    .registration-title {
        font-size: 2rem;
    }
    
    .progress-steps {
        flex-direction: column;
        gap: 1rem;
    }
    
    .progress-step {
        flex-direction: row;
        text-align: left;
        max-width: 100%;
    }
    
    .progress-step::before {
        display: none;
    }
    
    .step-number {
        margin-bottom: 0;
        margin-right: 1rem;
    }
    
    .step-info {
        flex: 1;
    }
    
    .progress-bar {
        margin-top: 1rem;
    }
    
    .step-content {
        padding: 1.5rem;
    }
    
    .registration-form .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .payment-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .upload-tabs {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .upload-tab {
        justify-content: center;
        text-align: center;
    }
    
    .step-navigation {
        flex-direction: column;
        gap: 1rem;
    }
    
    .step-navigation .btn {
        width: 100%;
        order: 2;
    }
    
    .step-navigation .btn-outline {
        order: 1;
    }
    
    .beneficiary-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .add-beneficiary-section {
        padding: 1.5rem;
    }
    
    .info-section h3 {
        font-size: 1.1rem;
    }
    
    .payment-section {
        padding: 1.5rem;
    }
    
    .service-summary {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 2rem;
    }
    
    .search-options {
        grid-template-columns: 1fr;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 1.75rem;
    }
    
    .hero-img {
        max-height: 200px;
    }
    
    .section-img {
        max-height: 180px;
    }
    
    .why-choose-us h2,
    .resources h2,
    .customer-feedback h2 {
        font-size: 2rem;
    }
    
    .legal-professional h2 {
        font-size: 2rem;
    }
    
    .text-section h2 {
        font-size: 2rem;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .search-form-container {
        grid-template-columns: 1fr;
    }
    
    .search-form-card {
        padding: 1.5rem;
    }
    
    .form-container {
        margin: 0 1rem;
    }
    
    .notes-section {
        margin: 0 1rem;
    }
    
    /* Will Registration Small Mobile Styles */
    .registration-title {
        font-size: 1.75rem;
    }
    
    .step-title {
        font-size: 1.5rem;
    }
    
    .step-content {
        padding: 1rem;
    }
    
    .progress-step {
        padding: 0.75rem;
        border-radius: 8px;
        background: #f8f9fa;
        margin-bottom: 0.5rem;
    }
    
    .beneficiaries-section h3,
    .add-beneficiary-section h3,
    .info-section h3 {
        font-size: 1rem;
    }
    
    .registration-form input,
    .registration-form select,
    .registration-form textarea {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    .upload-tab {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
    
    .file-upload-container.large {
        min-height: 120px;
    }
    
    .upload-icon {
        font-size: 2rem;
    }
    
    .service-summary,
    .payment-section {
        padding: 1rem;
    }
    
    .payment-label {
        padding: 0.75rem;
    }
    
    .service-includes {
        padding: 1rem;
    }
    
    .credit-card-details {
        padding: 1rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-card,
.feature-card,
.testimonial,
.search-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Focus States for Accessibility */
.btn:focus,
.nav-menu a:focus,
.dropdown-menu a:focus {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Modal Styles */
.modal {
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 2% auto;
    border-radius: 12px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.modal-header {
    padding: 2rem;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #000 0%, #333 100%);
    color: white;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.close {
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    background: none;
    border: none;
    color: white;
    transition: opacity 0.3s ease;
}

.close:hover {
    opacity: 0.7;
}

.modal-body {
    padding: 2rem;
    overflow-y: auto;
    flex: 1;
}

.terms-content {
    line-height: 1.6;
    color: #333;
}

.terms-content h2 {
    color: #000;
    font-size: 1.5rem;
    margin: 2rem 0 1rem 0;
    font-weight: 600;
    border-bottom: 2px solid #000;
    padding-bottom: 0.5rem;
}

.terms-content h3 {
    color: #000;
    font-size: 1.2rem;
    margin: 1.5rem 0 0.75rem 0;
    font-weight: 600;
}

.terms-content p {
    margin-bottom: 1rem;
    text-align: justify;
}

.modal-footer {
    padding: 1.5rem 2rem;
    border-top: 1px solid #e9ecef;
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    background-color: #f8f9fa;
}

.modal-footer .btn {
    min-width: 120px;
}

/* Input Validation Styles */
.form-group input.valid {
    border-color: #28a745;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1);
}

.form-group input.invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.validation-message {
    display: block;
    color: #dc3545;
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

.validation-message.success {
    color: #FF8C00;
}

/* Enhanced checkbox styles */
.checkbox-label {
    cursor: pointer;
    user-select: none;
}

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

.checkmark {
    position: relative;
    display: inline-block;
    height: 20px;
    width: 20px;
    background-color: #fff;
    border: 2px solid #e9ecef;
    border-radius: 4px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.checkbox-label:hover input ~ .checkmark {
    border-color: #FF8C00;
}

.checkbox-label input:checked ~ .checkmark {
    background-color: #FF8C00;
    border-color: #FF8C00;
}

.checkmark::after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-label input:checked ~ .checkmark::after {
    display: block;
}

/* Radio button styles */
.radio-group {
    margin-bottom: 1.5rem;
}

.radio-group-title {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
    padding: 0;
}

.radio-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
    padding: 0.75rem 1rem;
    background-color: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.radio-label:hover {
    border-color: #FF8C00;
    background-color: #fff5e6;
}

.radio-label input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.radio-mark {
    position: relative;
    display: inline-block;
    height: 20px;
    width: 20px;
    background-color: #fff;
    border: 2px solid #e9ecef;
    border-radius: 50%;
    flex-shrink: 0;
    margin-right: 0.75rem;
    transition: all 0.3s ease;
}

.radio-label input:checked ~ .radio-mark {
    background-color: #FF8C00;
    border-color: #FF8C00;
}

.radio-mark::after {
    content: "";
    position: absolute;
    display: none;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
    transform: translate(-50%, -50%);
}

.radio-label input:checked ~ .radio-mark::after {
    display: block;
}

.radio-label input:checked {
    background-color: #fff;
    border-color: #FF8C00;
}

.radio-text {
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    transition: color 0.3s ease;
}

.radio-label input:checked ~ .radio-text {
    color: #FF8C00;
    font-weight: 600;
}

@media (max-width: 768px) {
    .radio-options {
        gap: 0.5rem;
    }
    
    .radio-label {
        padding: 0.6rem 0.8rem;
    }
    
    .radio-group-title {
        font-size: 0.95rem;
    }
    
    .radio-text {
        font-size: 0.95rem;
    }
}

/* Terms link styling */
#termsLink {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

#termsLink:hover {
    color: #666;
    text-decoration: underline;
}

/* Mobile Responsive for Modal */
@media (max-width: 768px) {
    .modal-content {
        margin: 5% auto;
        width: 95%;
        max-height: 85vh;
    }
    
    .modal-header {
        padding: 1.5rem;
    }
    
    .modal-header h2 {
        font-size: 1.3rem;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
    
    .modal-footer {
        padding: 1rem 1.5rem;
        flex-direction: column;
    }
    
    .modal-footer .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .modal-footer .btn:last-child {
        margin-bottom: 0;
    }
    
    .terms-content h2 {
        font-size: 1.3rem;
    }
    
    .terms-content h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .modal-content {
        margin: 2% auto;
        width: 98%;
        max-height: 95vh;
    }
    
    .modal-header {
        padding: 1rem;
    }
    
    .modal-header h2 {
        font-size: 1.2rem;
    }
    
    .modal-body {
        padding: 1rem;
    }
    
    .modal-footer {
        padding: 1rem;
    }
    
    .close {
        font-size: 1.5rem;
    }
}

/* Error Message Styles */
.error-message {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    border: 1px solid #f87171;
    border-left: 4px solid #dc2626;
    border-radius: 8px;
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #991b1b;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.15);
}

.error-message i {
    font-size: 1.2rem;
    color: #dc2626;
    flex-shrink: 0;
}

.success-message {
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    border: 1px solid #4ade80;
    border-left: 4px solid #16a34a;
    border-radius: 8px;
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #14532d;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(22, 163, 74, 0.15);
}

.success-message i {
    font-size: 1.2rem;
    color: #16a34a;
    flex-shrink: 0;
}

/* Warning Message Styles */
.warning-message {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 1px solid #f59e0b;
    border-left: 4px solid #d97706;
    border-radius: 8px;
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #92400e;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(217, 119, 6, 0.15);
}

.warning-message i {
    font-size: 1.2rem;
    color: #d97706;
    flex-shrink: 0;
}

/* Notes Textarea Enhancement */
.form-group textarea#notes {
    height: 120px;
    resize: none;
    font-family: inherit;
    line-height: 1.5;
    padding: 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    background-color: #fff;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.form-group textarea#notes:focus {
    background-color: #fff;
    border-color: #333;
    box-shadow: 0 0 0 3px rgba(51, 51, 51, 0.1);
    outline: none;
}

.form-group textarea#notes::placeholder {
    color: #6c757d;
    font-style: italic;
}

/* Payment Details Sections */
.payment-details {
    margin-top: 2rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.payment-qr-section {
    text-align: center;
    margin-bottom: 2rem;
}

.payment-qr-section h4 {
    color: #000;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.payment-qr-section p {
    color: #666;
    margin-bottom: 1.5rem;
}

.qr-code-container {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
}

.payment-qr-code {
    max-width: 250px;
    width: 100%;
    height: auto;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.payment-amount {
    font-size: 1.2rem;
    color: #000;
    font-weight: 700;
    margin: 1rem 0;
}

/* FPS Payment Specific Styles */
.payment-info-section {
    text-align: center;
    margin-bottom: 2rem;
}

.payment-info-section h4 {
    color: #000;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.payment-info-section p {
    color: #666;
    margin-bottom: 1.5rem;
}

.fps-info-container {
    background: white;
    border: 2px solid #333;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
}

.fps-id-display {
    margin-bottom: 1rem;
}

.fps-id-display h3 {
    color: #333;
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    font-family: 'Courier New', monospace;
    letter-spacing: 2px;
}

/* Proof Upload Section */
.proof-upload-section {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    margin-top: 2rem;
}

.proof-upload-section h4 {
    color: #000;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.proof-upload-section .required {
    color: #dc3545;
}

/* Enhanced file upload styling for payment proof */
.proof-upload-section .file-upload-container {
    border: 2px dashed #333;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.proof-upload-section .file-upload-container:hover {
    border-color: #666;
    background-color: #f0f0f0;
}

.proof-upload-section .file-upload-label {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.proof-upload-section .file-upload-text {
    color: #666;
    font-weight: 500;
}

.proof-upload-section .file-upload-button {
    background-color: #FF8C00;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.proof-upload-section .file-upload-button:hover {
    background-color: #FF7700;
}

/* Mobile Responsive for Payment Details */
@media (max-width: 768px) {
    .payment-details {
        padding: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .payment-qr-code {
        max-width: 200px;
    }
    
    .fps-info-container {
        padding: 1.5rem;
    }
    
    .fps-id-display h3 {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }
    
    .proof-upload-section {
        padding: 1rem;
    }
    
    .proof-upload-section .file-upload-label {
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .payment-qr-code {
        max-width: 180px;
    }
    
    .fps-id-display h3 {
        font-size: 1.2rem;
        letter-spacing: 0.5px;
    }
    
    .payment-amount {
        font-size: 1.1rem;
    }
}

/* Services Page Styles */
.services-page {
    padding: 2rem 0 4rem;
    background-color: #f9f9f9;
}

.main-services {
    margin: 3rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-top: 4px solid #FF8C00;
}

.service-card .service-icon {
    width: 80px;
    height: 80px;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #333;
}

.service-card h3 {
    font-size: 1.3rem;
    color: #000;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

.service-details-section {
    background: white;
    border-radius: 12px;
    padding: 3rem;
    margin: 3rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Core Services List Styling */
.core-services-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    background: linear-gradient(135deg, #FF8C00 0%, #FF6600 100%);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.2);
}

.core-services-list li {
    position: relative;
    padding: 1rem 0 1rem 3rem;
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.6;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.core-services-list li:last-child {
    border-bottom: none;
}

.core-services-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    background: white;
    color: #FF8C00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.core-services-list li:hover {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding-left: 3.5rem;
    margin: 0 -0.5rem;
}

.core-services-list li:hover:before {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.service-summary {
    margin-top: 2rem;
}

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

.illustration-section {
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-illustration {
    position: relative;
    text-align: center;
}

.illustration-details {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    justify-content: center;
}

.data-point {
    width: 50px;
    height: 50px;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #333;
}

.registration-services {
    margin: 4rem 0;
}

.registration-services h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #000;
    margin-bottom: 3rem;
    font-weight: 700;
}

.services-detailed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.detailed-service-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-left: 4px solid #FF8C00;
}

.detailed-service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    border-left: 4px solid #FF7700;
}

.detailed-service-card .service-icon {
    width: 60px;
    height: 60px;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: #333;
}

.detailed-service-card h3 {
    font-size: 1.2rem;
    color: #000;
    margin-bottom: 1rem;
    font-weight: 600;
}

.detailed-service-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

.services-cta {
    text-align: center;
    margin-top: 3rem;
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 700;
}

/* Cases Page Styles */
.cases-page {
    padding: 2rem 0 4rem;
    background-color: #f9f9f9;
}

.case-study {
    background: white;
    border-radius: 12px;
    padding: 3rem;
    margin: 3rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #FF8C00;
}

.case-header h2 {
    color: #000;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 1rem;
}

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

.case-section h3 {
    color: #000;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.case-section p {
    color: #444;
    line-height: 1.7;
    font-size: 1rem;
    text-align: justify;
}

.case-recommendations {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 2rem;
    margin-top: 2rem;
    border-left: 4px solid #28a745;
}

.case-recommendations h4 {
    color: #28a745;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.case-recommendations ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.case-recommendations li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 2rem;
    color: #333;
}

.case-recommendations li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
    font-size: 1.2rem;
}

.key-lessons {
    margin: 4rem 0;
}

.key-lessons h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #000;
    margin-bottom: 3rem;
    font-weight: 700;
}

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

.lesson-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.lesson-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-bottom: 3px solid #FF8C00;
}

.lesson-icon {
    width: 70px;
    height: 70px;
    background: #fff3cd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: #856404;
}

.lesson-card h3 {
    font-size: 1.2rem;
    color: #000;
    margin-bottom: 1rem;
    font-weight: 600;
}

.lesson-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

.how-we-help {
    background: white;
    border-radius: 12px;
    padding: 3rem;
    margin: 3rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.how-we-help h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #000;
    margin-bottom: 3rem;
    font-weight: 700;
}

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

.help-feature {
    text-align: center;
    padding: 1.5rem;
}

.help-feature i {
    font-size: 3rem;
    color: #333;
    margin-bottom: 1rem;
}

.help-feature h4 {
    font-size: 1.2rem;
    color: #000;
    margin-bottom: 1rem;
    font-weight: 600;
}

.help-feature p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

.cases-cta {
    background: linear-gradient(135deg, #000 0%, #333 100%);
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
    color: white;
    margin: 3rem 0;
}

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

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cases-cta .btn-primary {
    background: #FF8C00;
    color: white;
    border: none;
    font-weight: 700;
}

.cases-cta .btn-primary:hover {
    background: #FF7700;
    transform: translateY(-2px);
}

/* Mobile Responsive for Services and Cases */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-details-section {
        padding: 2rem;
    }
    
    /* 移动端标题样式调整 */
    .service-details-header h2 {
        font-size: 2rem;
    }
    
    .service-details-header p {
        font-size: 1rem;
    }
    
    /* 移动端改为垂直布局 */
    .service-details-section .content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* 移动端注册服务区域调整 */
    .service-summary {
        padding: 2rem;
    }
    
    .service-summary p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .services-detailed-grid {
        grid-template-columns: 1fr;
    }
    
    /* Core Services List Mobile Styles */
    .core-services-list {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .core-services-list li {
        padding: 0.8rem 0 0.8rem 2.5rem;
        font-size: 1rem;
    }
    
    .core-services-list li:before {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
    
    .core-services-list li:hover {
        padding-left: 3rem;
    }
    
    .case-study {
        padding: 2rem;
    }
    
    .case-header h2 {
        font-size: 1.5rem;
    }
    
    .lessons-grid {
        grid-template-columns: 1fr;
    }
    
    .help-features {
        grid-template-columns: 1fr;
    }
    
    .how-we-help {
        padding: 2rem;
    }
    
    .cases-cta {
        padding: 2rem;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .registration-services h2 {
        font-size: 2rem;
    }
    
    .key-lessons h2 {
        font-size: 1.8rem;
    }
    
    .how-we-help h2 {
        font-size: 1.8rem;
    }
    
    /* 小屏幕标题样式 */
    .service-details-header h2 {
        font-size: 1.8rem;
    }
    
    .service-details-header p {
        font-size: 0.95rem;
    }
    
    /* 小屏幕服务详情区域 */
    .service-details-section {
        padding: 1.5rem;
    }
    
    .service-summary {
        padding: 1.5rem;
    }
    
    .service-summary p {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }
    
    .service-summary .btn {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .detailed-service-card {
        padding: 1.5rem;
    }
    
    .case-study {
        padding: 1.5rem;
    }
    
    /* Core Services List Small Mobile Styles */
    .core-services-list {
        padding: 1rem;
    }
    
    .core-services-list li {
        padding: 0.7rem 0 0.7rem 2.2rem;
        font-size: 0.95rem;
    }
    
    .core-services-list li:before {
        width: 25px;
        height: 25px;
        font-size: 0.9rem;
    }
    
    .btn-large {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
}

/* Chatbot Page Styles */
.chatbot-page {
    padding: 2rem 0 4rem;
    background-color: #f9f9f9;
    min-height: 100vh;
}

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

.chatbot-title {
    font-size: 2.8rem;
    color: #000;
    font-weight: 700;
    margin-bottom: 1rem;
}

.chatbot-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Chat Container */
.chat-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

.chat-interface {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 600px;
}

/* Chat Header */
.chat-header {
    background: linear-gradient(135deg, #F8F9FA 0%, #E9ECEF 100%);
    color: #000;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #DEE2E6;
}

.chat-status {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #2ECC71;
    position: relative;
    box-shadow: 0 0 8px rgba(46, 204, 113, 0.3);
}

.status-indicator.online::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #2ECC71;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.status-info h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
    color: #000000;
    text-shadow: none;
}

.status-info p {
    margin: 0;
    font-size: 0.95rem;
    color: #6C757D;
    font-weight: 500;
    opacity: 1;
}

.chat-actions {
    display: flex;
    gap: 0.5rem;
}

.chat-action-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.chat-action-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Chat Messages */
.chat-messages {
    flex: 1;
    padding: 1.5rem;
    overflow-y: auto;
    background: #f8f9fa;
}

.message {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.user-message {
    flex-direction: row-reverse;
}

.message-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.bot-message .message-avatar {
    background: #333;
    color: white;
}

.user-message .message-avatar {
    background: #28a745;
    color: white;
}

.message-content {
    max-width: 70%;
}

.message-bubble {
    background: white;
    padding: 1rem 1.2rem;
    border-radius: 18px;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.user-message .message-bubble {
    background: #28a745;
    color: white;
}

.bot-message .message-bubble {
    background: white;
    color: #333;
}

.message-bubble p {
    margin: 0;
    line-height: 1.5;
}

.message-time {
    font-size: 0.75rem;
    color: #999;
    display: block;
    margin-top: 0.5rem;
}

.user-message .message-time {
    color: rgba(255, 255, 255, 0.8);
}

/* Quick Links */
.quick-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0;
}

.quick-link {
    background: #f5f5f5;
    color: #333;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.quick-link:hover {
    background: #FF8C00;
    color: white;
}

/* Typing Indicator */
.typing-dots {
    display: flex;
    gap: 4px;
    padding: 1rem 1.2rem;
    background: white;
    border-radius: 18px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.typing-dots span {
    width: 8px;
    height: 8px;
    background: #999;
    border-radius: 50%;
    animation: typing 1.4s infinite;
}

.typing-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {
    0%, 60%, 100% {
        transform: translateY(0);
        opacity: 0.5;
    }
    30% {
        transform: translateY(-10px);
        opacity: 1;
    }
}

/* Chat Input */
.chat-input-container {
    padding: 1.5rem;
    background: white;
    border-top: 1px solid #e9ecef;
}

.chat-input-wrapper {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.chat-input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.chat-input:focus {
    border-color: #333;
}

.send-button {
    width: 45px;
    height: 45px;
    background: #FF8C00;
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.send-button:hover {
    background: #FF7700;
    transform: scale(1.05);
}

/* Quick Actions Panel */
.quick-actions-panel {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    height: fit-content;
}

.quick-actions-panel h3 {
    font-size: 1.3rem;
    color: #000;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.quick-actions-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.quick-action-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.quick-action-btn:hover {
    background: #FFF5E6;
    border-color: #FF8C00;
    transform: translateY(-2px);
}

.quick-action-btn i {
    font-size: 1.2rem;
    color: #333;
    width: 20px;
}

.quick-action-btn span {
    font-weight: 500;
    color: #333;
}

/* FAQ Section */
.faq-section {
    background: white;
    border-radius: 12px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.faq-section h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #000;
    margin-bottom: 3rem;
    font-weight: 700;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.faq-item {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item:hover {
    border-color: #FF8C00;
}

.faq-item.active {
    border-color: #FF8C00;
}

.faq-question {
    padding: 1.5rem;
    background: #f8f9fa;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #FFF5E6;
}

.faq-item.active .faq-question {
    background: #FFF5E6;
}

.faq-question h4 {
    margin: 0;
    font-size: 1.1rem;
    color: #000;
    font-weight: 600;
}

.faq-question i {
    color: #FF8C00;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    background: white;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

/* Help Section */
.help-section {
    background: white;
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.help-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.help-info h2 {
    font-size: 2rem;
    color: #000;
    margin-bottom: 1rem;
    font-weight: 700;
}

.help-info p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.contact-options {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-option i {
    width: 50px;
    height: 50px;
    background: #f5f5f5;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.3rem;
}

.contact-option h4 {
    margin: 0 0 0.25rem 0;
    color: #000;
    font-size: 1.1rem;
    font-weight: 600;
}

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

.help-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.help-actions .btn {
    text-align: center;
    padding: 15px 20px;
    font-weight: 600;
}

/* Mobile Responsive for Chatbot */
@media (max-width: 768px) {
    .chatbot-title {
        font-size: 2.2rem;
    }
    
    .chat-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .chat-interface {
        height: 500px;
    }
    
    .chat-header {
        padding: 1rem;
    }
    
    .status-info h3 {
        font-size: 1.1rem;
        color: #000000;
        font-weight: 700;
    }
    
    .status-info p {
        font-size: 0.85rem;
        color: #6C757D;
        font-weight: 500;
    }
    
    .chat-messages {
        padding: 1rem;
    }
    
    .message-content {
        max-width: 85%;
    }
    
    .quick-actions-panel {
        padding: 1.5rem;
    }
    
    .quick-action-btn {
        padding: 0.8rem;
    }
    
    .quick-action-btn span {
        font-size: 0.9rem;
    }
    
    .faq-section {
        padding: 2rem;
    }
    
    .faq-section h2 {
        font-size: 1.8rem;
    }
    
    .help-section {
        padding: 2rem;
    }
    
    .help-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .help-info h2 {
        font-size: 1.8rem;
    }
    
    .contact-options {
        gap: 1rem;
    }
    
    .contact-option i {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .chatbot-title {
        font-size: 1.8rem;
    }
    
    .chatbot-description {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .chat-interface {
        height: 450px;
        margin: 0 1rem;
    }
    
    .chat-header {
        padding: 0.75rem;
    }
    
    .status-info h3 {
        font-size: 1rem;
        color: #000000;
        font-weight: 700;
        text-shadow: none;
    }
    
    .status-info p {
        font-size: 0.85rem;
        color: #6C757D;
        font-weight: 500;
    }
    
    .chat-messages {
        padding: 1rem;
    }
    
    .message-content {
        max-width: 85%;
    }
    
    .quick-actions-panel {
        padding: 1rem;
    }
    
    .quick-action-btn {
        padding: 0.7rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .faq-section {
        padding: 1.5rem;
    }
    
    .faq-section h2 {
        font-size: 1.5rem;
    }
    
    .faq-question {
        padding: 1rem;
    }
    
    .faq-question h4 {
        font-size: 1rem;
    }
    
    .help-section {
        padding: 1.5rem;
    }
    
    .help-info h2 {
        font-size: 1.5rem;
    }
    
    .help-actions .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    /* Footer Mobile Styles */
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .social-link {
        justify-content: center;
    }
}

/* Social Media Styles */
.social-media {
    margin-top: 5px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px 0;
}

.social-link:hover {
    color: white;
    transform: translateY(-2px);
}

.facebook-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #333, #666);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-link:hover .facebook-icon {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(51, 51, 51, 0.4);
}

.facebook-icon svg {
    width: 20px;
    height: 20px;
}

.social-link span {
    font-size: 0.95rem;
    font-weight: 500;
}

/* Terms and privacy link orange accent */
#termsLink {
    color: #FF8C00;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

#termsLink:hover {
    color: #FF7700;
    text-decoration: underline;
}

/* Link accents in footer and content */
.footer-bottom-left a:hover {
    color: #FF8C00;
}

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

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

/* Icon and decorative orange accents */

/* Feature icons hover effect */
.feature-icon:hover {
    background: #FFF5E6;
    color: #FF8C00;
    transform: scale(1.1);
}

.feature-icon-container:hover {
    background: #FFF5E6;
    color: #FF8C00;
    transform: scale(1.1);
}

/* Service icons hover effect */
.service-card .service-icon:hover {
    background: #FFF5E6;
    color: #FF8C00;
    transform: scale(1.1);
}

.detailed-service-card .service-icon:hover {
    background: #FFF5E6;
    color: #FF8C00;
    transform: scale(1.1);
}

/* Contact option icons with orange accent */
.contact-option:hover i {
    background: #FF8C00;
    color: white;
}

/* Professional badge with orange */
.professional-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background-color: #FF8C00;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Upload icon hover effect */
.upload-icon:hover {
    color: #FF8C00;
}

/* Back button hover effect */
.back-button:hover {
    color: #FF8C00;
}

/* Mobile menu button hover */
.mobile-menu-btn:hover span {
    background-color: #FF8C00;
}

/* Language select focus */
.language-select:focus {
    outline: none;
    border-color: #FF8C00;
}

/* Dropdown menu item hover */
.dropdown-menu a:hover {
    background-color: #FFF5E6;
    color: #FF8C00;
}

/* Login button alternative style for secondary pages */
.login-btn.secondary {
    background-color: #FF8C00;
    color: white;
}

.login-btn.secondary:hover {
    background-color: #FF7700;
}

/* Progress fill animation with orange */
.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #FFA500 0%, #FF8C00 100%);
    border-radius: 2px;
    transition: width 0.5s ease;
}

/* Active step highlighting */
.progress-step.completed::before,
.progress-step.active::before {
    background-color: #FFA500;
}

/* Card icons with subtle orange accents on hover */
.card-icons img:hover,
.card-icons-inline img:hover {
    filter: sepia(100%) saturate(200%) hue-rotate(25deg);
}

/* Media logo hover effect */
.media-logo:hover,
.logo-placeholder:hover {
    border-color: #FF8C00;
    color: #FF8C00;
}

/* Additional emphasis for important text */
.highlight {
    color: #FF8C00;
    font-weight: 700;
}

/* Search Results Page Styles */
.search-results-page {
    padding: 2rem 0 4rem;
    background-color: #f9f9f9;
    min-height: 100vh;
}

/* Search Result Container */
.search-result-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 2rem;
    border-left: 5px solid #28a745;
}

/* Result Header */
.result-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.status-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.registered {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.status-badge i {
    font-size: 1.2rem;
}

.reference-info {
    display: flex;
    flex-direction: column;
    text-align: right;
}

.reference-label {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 0.25rem;
}

.reference-number {
    font-size: 1.2rem;
    font-weight: 700;
    color: #000;
    font-family: 'Courier New', monospace;
    letter-spacing: 1px;
}

/* Result Content */
.result-content {
    padding: 2rem;
}

.result-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e9ecef;
}

.result-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.result-section h3 {
    color: #000;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-left: 4px solid #FF8C00;
    padding-left: 1rem;
}

.result-section h3 i {
    color: #FF8C00;
    font-size: 1.2rem;
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.info-item label {
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

.info-item span {
    color: #000;
    font-size: 1.1rem;
    font-weight: 500;
}

.masked-info {
    font-family: 'Courier New', monospace;
    letter-spacing: 2px;
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    color: #FF8C00 !important;
}

/* Status Info */
.status-info {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1.5rem;
    border-left: 4px solid #17a2b8;
}

.status-info p {
    margin: 0;
    color: #333;
    line-height: 1.6;
    font-size: 1rem;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.action-buttons .btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.action-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Important Notice */
.important-notice {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border: 1px solid #ffc107;
    border-left: 5px solid #ff8c00;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(255, 193, 7, 0.2);
}

.notice-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.notice-content i {
    color: #ff8c00;
    font-size: 2rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.notice-text h4 {
    color: #856404;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.notice-text p {
    color: #856404;
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

/* No Results Container */
.no-results-container,
.error-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 3rem;
    text-align: center;
    margin-bottom: 2rem;
    border-left: 5px solid #dc3545;
}

.no-results-content,
.error-content {
    max-width: 600px;
    margin: 0 auto;
}

.no-results-icon,
.error-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 3rem;
    color: #6c757d;
}

.no-results-container h2,
.error-container h2 {
    color: #000;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.no-results-container p,
.error-container p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Suggestions */
.suggestions {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
    text-align: left;
}

.suggestions h4 {
    color: #000;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.suggestions li {
    position: relative;
    padding: 0.5rem 0 0.5rem 2rem;
    color: #333;
    line-height: 1.5;
}

.suggestions li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #FF8C00;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Action Buttons for No Results */
.no-results-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.no-results-actions .btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 15px 30px;
    font-weight: 600;
    text-decoration: none;
}

/* Help Section for Results Page */
.search-results-page .help-section {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.search-results-page .help-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.search-results-page .help-info h2 {
    color: #000;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.search-results-page .help-info h2 i {
    color: #FF8C00;
    font-size: 1.5rem;
}

.search-results-page .help-info p {
    color: #666;
    line-height: 1.6;
    font-size: 1.05rem;
}

.search-results-page .contact-options {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.search-results-page .contact-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.search-results-page .contact-option:hover {
    background: #FFF5E6;
    transform: translateY(-2px);
}

.search-results-page .contact-option i {
    width: 50px;
    height: 50px;
    background: #FF8C00;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.3rem;
}

.search-results-page .contact-option h4 {
    margin: 0 0 0.25rem 0;
    color: #000;
    font-size: 1.1rem;
    font-weight: 600;
}

.search-results-page .contact-option p {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
}

/* Responsive Design for Search Results */
@media (max-width: 768px) {
    .result-header {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .reference-info {
        text-align: center;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .action-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .no-results-actions {
        flex-direction: column;
    }
    
    .no-results-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .search-results-page .help-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .notice-content {
        flex-direction: column;
        text-align: center;
    }
    
    .notice-content i {
        margin-top: 0;
    }
}

@media (max-width: 480px) {
    .search-results-page {
        padding: 1rem 0 2rem;
    }
    
    .result-content {
        padding: 1.5rem;
    }
    
    .result-header {
        padding: 1.5rem;
    }
    
    .no-results-container,
    .error-container {
        padding: 2rem 1.5rem;
    }
    
    .no-results-icon,
    .error-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
    
    .status-badge {
        padding: 10px 20px;
        font-size: 1rem;
    }
    
    .reference-number {
        font-size: 1.1rem;
    }
    
    .result-section h3 {
        font-size: 1.1rem;
    }
    
    .search-results-page .help-section {
        padding: 2rem 1.5rem;
    }
    
    .search-results-page .help-info h2 {
        font-size: 1.5rem;
    }
    
    .important-notice {
        padding: 1.5rem;
    }
}

/* Print Styles */
@media print {
    .back-button-container,
    .action-buttons,
    .help-section,
    .no-results-actions {
        display: none !important;
    }
    
    .search-result-container {
        box-shadow: none;
        border: 1px solid #ccc;
    }
    
    .status-badge.registered {
        background: #28a745 !important;
        -webkit-print-color-adjust: exact;
    }
}

/* Service Details Header - 居中样式 */
.service-details-header {
    text-align: center;
    margin-bottom: 3rem;
}

.service-details-header h2 {
    font-size: 2.5rem;
    color: #000;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-details-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Content Wrapper - 调整为左右布局 */
.service-details-section .content-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: flex-start;
}

/* 右边注册服务区域样式 */
.service-summary-section {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.service-summary {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    width: 100%;
}

.service-summary:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: #FF8C00;
}

.service-summary p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #000;
    font-weight: 700;
}

.service-summary .btn {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 700;
    width: 100%;
}

/* Consultants Section */
.consultants-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.consultants-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.consultant-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

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

.consultant-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #FF8C00 0%, #FF6600 100%);
}

.consultant-type {
    margin-bottom: 1.5rem;
}

.consultant-type h3 {
    color: #666;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.consultant-info h2 {
    color: #000;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
}

.consultant-info p {
    color: #666;
    font-size: 1rem;
    margin: 0 0 1.5rem 0;
}

.more-link {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.more-link span {
    color: #FF8C00;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.consultant-card:hover .more-link span {
    color: #FF6600;
    transform: translateX(5px);
}

/* Consultant Modal Styles */
.consultant-details h3 {
    color: #FF8C00;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f8f9fa;
}

.consultant-details p {
    color: #333;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.consultant-details ul {
    margin: 0 0 1.5rem 1rem;
    padding: 0;
}

.consultant-details li {
    color: #333;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.contact-info {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1.5rem;
}

.contact-info h4 {
    color: #FF8C00;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
}

.contact-info p {
    margin: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-info i {
    color: #FF8C00;
    width: 20px;
}

/* Responsive Design for Consultants */
@media (max-width: 768px) {
    .consultants-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .consultant-card {
        padding: 1.5rem;
    }
    
    .consultant-info h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .consultant-card {
        padding: 1rem;
    }
    
    .consultant-info h2 {
        font-size: 1.3rem;
    }
    
    .consultant-type h3 {
        font-size: 0.8rem;
    }
}