/* ===================================
   Information Pages Styles
   =================================== */

/* Page Hero */
.page-hero {
    background: var(--gradient-primary);
    padding: var(--space-2xl) 0;
    text-align: center;
    color: white;
}

.page-hero h1 {
    color: white;
    margin-bottom: var(--space-sm);
    font-size: clamp(2rem, 5vw, 3rem);
}

.page-hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: var(--space-md);
}

.page-hero .breadcrumb {
    color: rgba(255, 255, 255, 0.8);
}

.page-hero .breadcrumb a {
    color: white;
}

/* About Page Styles */
.about-content {
    padding: var(--space-2xl) 0;
}

.content-section {
    margin-bottom: var(--space-2xl);
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.content-text h2 {
    margin-bottom: var(--space-md);
}

.content-text p {
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.visual-card {
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    text-align: center;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

.stat-label {
    font-size: 1.25rem;
    opacity: 0.9;
}

/* Values Section */
.values-section {
    padding: var(--space-2xl) 0;
    background: var(--bg-secondary);
    border-radius: var(--radius-xl);
    margin-bottom: var(--space-2xl);
}

.values-section h2 {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
}

.value-card {
    background: white;
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition-base);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: var(--space-md);
}

.value-card h3 {
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.value-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Process Timeline */
.process-section {
    margin-bottom: var(--space-2xl);
}

.process-section h2 {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.process-timeline {
    position: relative;
    padding: var(--space-lg) 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-color);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: var(--space-2xl);
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-content {
    width: 45%;
    padding: var(--space-lg);
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
}

.timeline-content h3 {
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.timeline-content p {
    color: var(--text-secondary);
}

/* Team Section */
.team-section {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.team-section h2 {
    margin-bottom: var(--space-sm);
}

.team-section .section-subtitle {
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-bottom: var(--space-xl);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-xl);
}

.team-member {
    text-align: center;
}

.member-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto var(--space-md);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: 700;
}

.team-member h4 {
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

.team-member p {
    color: var(--text-secondary);
    margin-bottom: var(--space-sm);
}

.member-quote {
    font-style: italic;
    color: var(--text-light);
    font-size: 0.875rem;
}

/* CTA Section */
.about-cta {
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    text-align: center;
    color: white;
}

.cta-content h2 {
    color: white;
    margin-bottom: var(--space-sm);
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: var(--space-lg);
}

.cta-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
}

.cta-buttons .btn-outline {
    background: white;
    color: var(--primary-color);
    border-color: white;
}

.cta-buttons .btn-outline:hover {
    background: transparent;
    color: white;
}

/* FAQ Page Styles */
.faq-content {
    padding: var(--space-2xl) 0;
    max-width: 800px;
    margin: 0 auto;
}

.faq-categories {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
    justify-content: center;
}

.category-btn {
    padding: var(--space-xs) var(--space-md);
    background: white;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-full);
    cursor: pointer;
    font-weight: 500;
    transition: all var(--transition-base);
}

.category-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

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

.faq-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.faq-item {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all var(--transition-base);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    padding: var(--space-lg);
    background: transparent;
    border: none;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all var(--transition-base);
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    transition: transform var(--transition-base);
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 var(--space-lg);
    max-height: 0;
    overflow: hidden;
    transition: all var(--transition-base);
}

.faq-item.active .faq-answer {
    padding: 0 var(--space-lg) var(--space-lg);
    max-height: 500px;
}

.faq-answer p {
    line-height: 1.8;
}

/* Contact Page Styles */
.contact-content {
    padding: var(--space-2xl) 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
}

/* Page Content Wrapper */
.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.content-wrapper h2 {
    color: var(--text-primary);
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-sm);
    border-bottom: 3px solid var(--primary-color);
}

.content-wrapper h3 {
    color: var(--text-primary);
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
}

.content-wrapper p {
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
}

.content-wrapper ul,
.content-wrapper ol {
    margin-left: var(--space-xl);
    margin-bottom: var(--space-lg);
}

.content-wrapper li {
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: var(--space-sm);
}

/* Info Tables */
.info-table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--space-xl) 0;
    box-shadow: var(--shadow-sm);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.info-table thead {
    background: var(--primary-color);
    color: white;
}

.info-table th,
.info-table td {
    padding: var(--space-md);
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.info-table tbody tr:hover {
    background: var(--bg-secondary);
}

/* Highlight Boxes */
.highlight-box {
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    margin: var(--space-xl) 0;
    border-left: 4px solid;
}

.highlight-box.success {
    background: #E8F5E9;
    border-left-color: #2E7D32;
}

.highlight-box.warning {
    background: #FFF3E0;
    border-left-color: #F57C00;
}

.highlight-box.info {
    background: #E3F2FD;
    border-left-color: #1976D2;
}

.highlight-box h4 {
    margin-top: 0;
    margin-bottom: var(--space-sm);
}

/* Steps Container */
.steps-container {
    margin: var(--space-2xl) 0;
}

.step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
}

.step-content h3 {
    margin-top: 0;
}

/* CTA Section */
.cta-section {
    background: var(--gradient-primary);
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    text-align: center;
    color: white;
    margin: var(--space-2xl) 0;
}

.cta-section h2 {
    color: white;
    margin-bottom: var(--space-md);
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-lg);
    font-size: 1.125rem;
}

.cta-section .btn {
    background: white;
    color: var(--primary-color);
}

/* Info Cards Grid */
.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
    margin: var(--space-2xl) 0;
}

.info-card {
    background: white;
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: transform var(--transition-base);
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-card-icon {
    font-size: 3rem;
    margin-bottom: var(--space-md);
}

.info-card h3 {
    margin-bottom: var(--space-sm);
}

.info-card p {
    color: var(--text-secondary);
}

.contact-form-section {
    background: white;
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.form-group label {
    font-weight: 500;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: var(--space-sm);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: all var(--transition-base);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

.form-group input.error,
.form-group textarea.error {
    border-color: #E74C3C;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.info-card {
    background: white;
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.info-card h3 {
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.contact-method-icon {
    font-size: 1.5rem;
    line-height: 1;
}

.contact-method-content strong {
    display: block;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.contact-method-content span {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.response-time {
    padding: var(--space-md);
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    text-align: center;
}

.response-time strong {
    display: block;
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: var(--space-xs);
}

/* How It Works Page Styles */
.visual-process {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.process-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: var(--space-lg);
    padding: var(--space-xl);
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.process-step:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(10px);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    flex-shrink: 0;
}

.process-connector {
    height: 40px;
    width: 2px;
    background: var(--border-color);
    margin: 0 auto;
}

.video-section {
    margin-top: var(--space-2xl);
}

.video-placeholder {
    background: var(--bg-secondary);
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-base);
}

.video-placeholder:hover {
    background: var(--primary-color);
    color: white;
}

.play-button {
    margin: 0 auto var(--space-md);
}

.design-quality {
    padding: var(--space-2xl) 0;
    background: var(--bg-secondary);
    margin: var(--space-2xl) 0;
    border-radius: var(--radius-xl);
}

.design-quality h2 {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.quality-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
}

.quality-card {
    background: white;
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition-base);
}

.quality-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.quality-card .icon {
    font-size: 3rem;
    display: block;
    margin-bottom: var(--space-md);
}

.quality-card h3 {
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}

.quality-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.customization {
    padding: var(--space-2xl) 0;
}

.customization h2 {
    text-align: center;
    margin-bottom: var(--space-sm);
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-bottom: var(--space-xl);
}

.custom-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
}

.option-card {
    background: white;
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.option-card h3 {
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

.option-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.option-card ul {
    list-style: none;
    padding-left: 0;
}

.option-card li {
    padding-left: var(--space-lg);
    position: relative;
    margin-bottom: var(--space-xs);
    color: var(--text-secondary);
}

.option-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.color-samples {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.color-samples span {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
}

.text-examples {
    margin-top: var(--space-md);
    padding: var(--space-md);
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
}

.font-example {
    font-weight: 600;
    color: var(--primary-color);
}

.pod-benefits {
    padding: var(--space-2xl) 0;
}

.pod-benefits h2 {
    text-align: center;
    margin-bottom: var(--space-sm);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-lg);
}

.benefit-card {
    background: white;
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.benefit-card .icon {
    font-size: 3rem;
    margin-bottom: var(--space-md);
}

.benefit-card h3 {
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}

.benefit-card p {
    color: var(--text-secondary);
}

.faq-preview {
    padding: var(--space-2xl) 0;
    background: var(--bg-secondary);
    border-radius: var(--radius-xl);
}

.faq-preview h2 {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.faq-grid .faq-item {
    background: white;
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
}

.faq-grid .faq-item h3 {
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}

.faq-grid .faq-item p {
    color: var(--text-secondary);
}

.faq-cta {
    text-align: center;
    margin-top: var(--space-xl);
}

.get-started-cta {
    padding: var(--space-2xl);
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    text-align: center;
    color: white;
}

.get-started-cta h2 {
    color: white;
    margin-bottom: var(--space-md);
}

.get-started-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-lg);
}

/* Shipping Page Styles */
.shipping-info {
    padding: var(--space-2xl) 0;
}

.info-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
    padding: var(--space-xl);
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.info-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.info-item .icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.info-item strong {
    display: block;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.info-item span {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.section-block {
    margin-bottom: var(--space-2xl);
}

.section-block h2 {
    margin-bottom: var(--space-lg);
    color: var(--text-primary);
    padding-bottom: var(--space-sm);
    border-bottom: 3px solid var(--primary-color);
}

.section-block h3 {
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

.shipping-table {
    margin: var(--space-lg) 0;
    overflow-x: auto;
}

.shipping-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    box-shadow: var(--shadow-sm);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.shipping-table thead {
    background: var(--primary-color);
    color: white;
}

.shipping-table th,
.shipping-table td {
    padding: var(--space-md);
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.shipping-table tbody tr:hover {
    background: var(--bg-secondary);
}

.notice-box {
    background: #FFF3E0;
    border-left: 4px solid #F57C00;
    padding: var(--space-md);
    border-radius: var(--radius-md);
    margin-top: var(--space-lg);
}

.policy-card {
    background: white;
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    margin-bottom: var(--space-xl);
}

.policy-card h3,
.policy-card h4 {
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

.policy-card ul {
    list-style: disc;
    padding-left: var(--space-xl);
}

.policy-card li {
    margin-bottom: var(--space-sm);
    color: var(--text-secondary);
}

.return-process h3 {
    margin-bottom: var(--space-lg);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-lg);
}

.step-card {
    background: white;
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.step-card .number {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0 auto var(--space-md);
}

.step-card h4 {
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}

.step-card p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

.exchange-info {
    background: var(--bg-secondary);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    margin: var(--space-xl) 0;
}

.exchange-info h3 {
    margin-top: 0;
}

.refund-timeline {
    margin: var(--space-xl) 0;
}

.timeline-bar {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: var(--space-xl) 0;
}

.timeline-bar::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--border-color);
}

.timeline-point {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    position: relative;
    flex: 1;
}

.timeline-point::before {
    content: '';
    width: 20px;
    height: 20px;
    background: var(--border-color);
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: var(--shadow-sm);
}

.timeline-point.active::before {
    background: var(--primary-color);
}

.timeline-point span {
    text-align: center;
    font-weight: 600;
    color: var(--text-primary);
}

.timeline-point small {
    color: var(--text-light);
    font-size: 0.875rem;
}

.timeline-note {
    text-align: center;
    color: var(--text-light);
    font-size: 0.875rem;
    margin-top: var(--space-md);
}

.international-info {
    background: white;
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.international-info ul {
    list-style: disc;
    padding-left: var(--space-xl);
}

.contact-cta {
    background: var(--bg-secondary);
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    text-align: center;
}

.contact-cta h2 {
    margin-bottom: var(--space-md);
}

.contact-cta p {
    margin-bottom: var(--space-lg);
    color: var(--text-secondary);
}

/* FAQ Page Additional Styles */
.faq-search {
    padding: var(--space-lg) 0;
}

.search-box {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.search-box input {
    width: 100%;
    padding: var(--space-md) var(--space-lg);
    padding-right: 50px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-full);
    font-size: 1rem;
    transition: all var(--transition-base);
}

.search-box input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(107, 70, 193, 0.1);
}

.search-box button {
    position: absolute;
    right: var(--space-sm);
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: var(--space-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-section {
    margin-bottom: var(--space-2xl);
}

.faq-section h2 {
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-sm);
    border-bottom: 3px solid var(--primary-color);
}

.faq-question svg {
    flex-shrink: 0;
    transition: transform var(--transition-base);
}

.faq-item.active .faq-question svg,
.faq-question[aria-expanded="true"] svg {
    transform: rotate(180deg);
}

.help-cta {
    background: var(--gradient-primary);
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    text-align: center;
    color: white;
    margin-top: var(--space-2xl);
}

.help-cta h2 {
    color: white;
    margin-bottom: var(--space-md);
}

.help-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-lg);
}

.help-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
}

/* Contact Page Additional Styles */
.contact-methods {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-base);
}

.contact-method:hover {
    background: var(--primary-color);
    color: white;
    transform: translateX(5px);
}

.contact-method .icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-method div {
    flex: 1;
}

.contact-method strong {
    display: block;
    margin-bottom: 0.25rem;
}

.contact-method span {
    font-size: 0.875rem;
    opacity: 0.9;
}

.social-connect {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.social-link {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-sm);
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    text-decoration: none;
    color: var(--text-secondary);
    transition: all var(--transition-base);
}

.social-link:hover {
    background: var(--primary-color);
    color: white;
}

.social-link span:first-child {
    font-size: 1.5rem;
}

.social-note {
    margin-top: var(--space-md);
    font-size: 0.875rem;
    color: var(--text-light);
    font-style: italic;
}

.quick-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.quick-links a {
    color: var(--primary-color);
    text-decoration: none;
    padding: var(--space-xs);
    transition: all var(--transition-base);
}

.quick-links a:hover {
    color: var(--secondary-color);
    padding-left: var(--space-sm);
}

.live-chat-widget {
    background: var(--gradient-primary);
    color: white;
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    text-align: center;
}

.chat-bubble {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.chat-bubble .icon {
    font-size: 2rem;
}

.chat-bubble strong {
    display: block;
    margin-bottom: 0.25rem;
}

.chat-bubble .status {
    font-size: 0.875rem;
}

.chat-bubble .status.online {
    color: #43e97b;
}

.live-chat-widget .btn {
    background: white;
    color: var(--primary-color);
    width: 100%;
}

.quick-faq {
    padding: var(--space-2xl) 0;
    background: var(--bg-secondary);
}

.quick-faq h2 {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.faq-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-lg);
}

.faq-card {
    background: white;
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    text-decoration: none;
    color: inherit;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.faq-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.faq-card .icon {
    font-size: 3rem;
    margin-bottom: var(--space-md);
}

.faq-card h3 {
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}

.faq-card p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        flex-direction: column;
    }

    .process-timeline::before {
        left: 30px;
    }

    .timeline-number {
        left: 30px;
    }

    .timeline-content {
        width: calc(100% - 80px);
        margin-left: 80px !important;
    }
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-buttons {
        flex-direction: column;
    }

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

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

    .process-timeline::before {
        display: none;
    }

    .timeline-number {
        position: static;
        margin: 0 auto var(--space-md);
        transform: none;
    }

    .timeline-content {
        width: 100%;
        margin-left: 0 !important;
    }

    .quality-grid,
    .custom-options,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

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

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

    .faq-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .help-buttons {
        flex-direction: column;
    }

    .timeline-bar {
        flex-wrap: wrap;
        gap: var(--space-md);
    }

    .timeline-bar::before {
        display: none;
    }

    .timeline-point {
        flex: 0 0 calc(50% - var(--space-md) / 2);
    }
}

@media (max-width: 480px) {
    .team-grid {
        grid-template-columns: 1fr;
    }

    .faq-question {
        font-size: 1rem;
        padding: var(--space-md);
    }

    .process-step {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .step-icon {
        margin: 0 auto;
    }

    .process-connector {
        height: 20px;
    }

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

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

    .timeline-point {
        flex: 0 0 100%;
    }
}