/* Page-specific styles for legal and other content pages */

/* Page Content Container */
@charset "UTF-8";

.page-content {
    min-height: 100vh;
    padding-top: 80px;
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    overflow-x: hidden;
}

.page-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
      radial-gradient(circle at 20% 20%, rgba(255, 107, 107, 0.1) 0%, transparent 50%),
      radial-gradient(circle at 80% 80%, rgba(138, 43, 226, 0.1) 0%, transparent 50%),
      radial-gradient(circle at 40% 60%, rgba(255, 167, 38, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.page-content > * {
    position: relative;
    z-index: 2;
}

/* Legal Hero Section */
.legal-hero {
    padding: 100px 0 80px;
    text-align: center;
    background: linear-gradient(
      135deg, rgba(59, 130, 246, 0.1) 0%, rgba(147, 51, 234, 0.1) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-hero .hero-content {
    /* max-width: 800px; */
    margin: 0 auto;
    display:flex;
    flex-direction: column;
}

.legal-icon {
    width: 120px;
    height: 120px;
    /* margin: 0 auto 30px; */
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: white;
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.3);
    animation: float 6s ease-in-out infinite;
}

.legal-title {
    font-size: 3.5rem;
    font-weight: 800;
    /* margin-bottom: 20px; */
    line-height: 1.2;
}

.legal-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    /* margin-bottom: 40px; */
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.legal-meta {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    /* margin-top: 30px; */
}

.legal-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.legal-meta i {
    color: #ffa726;
}

/* Table of Contents */
.legal-toc {
    /* padding: 60px 0; */
    background: rgba(255, 255, 255, 0.02);
    z-index: 4;
}

.sticky-toc {
    position: fixed !important;
    top: 100px;
    right: 20px;
    /* width: 300px; */
    z-index: 1000;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    display:block !important;
}

@media (max-width: 1200px) {
    .sticky-toc {
        position: static !important;
        width: auto;
    }
}
.toc-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 20px;
    backdrop-filter: blur(10px);
    max-width: 300px;
    margin: 0 auto;
    display: none;
    font-size: 15px;
}

.toc-title {
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
}

.toc-title i {
    color: #ffa726;
    font-size: 1.5rem;
}

.toc-nav {
    display: grid;
    /* grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); */
    gap: 15px;
}

.toc-link {
    display: block;
    padding: 7px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.toc-link:hover {
    background: rgba(255, 167, 38, 0.1);
    border-color: #ffa726;
    color: #ffa726;
    transform: translateX(10px);
}

/* Legal Content */
.legal-content {
    padding: 80px 0;
}

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

.legal-section {
    margin-bottom: 80px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 50px;
    backdrop-filter: blur(10px);
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    color: white;
    border-bottom: 2px solid rgba(255, 167, 38, 0.3);
    padding-bottom: 20px;
}

.section-number {
    background: linear-gradient(135deg, #ffa726, #ff6b6b);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
    flex-shrink: 0;
}

.section-content {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-size: 1.1rem;
}

.section-content p {
    margin-bottom: 20px;
}

.subsection-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 40px 0 20px;
    color: #ffa726;
    display: flex;
    align-items: center;
    gap: 10px;
}

.subsection-title::before {
    content: '';
    width: 4px;
    height: 30px;
    background: linear-gradient(135deg, #ffa726, #ff6b6b);
    border-radius: 2px;
}

/* Cookie Definition */
.cookie-definition {
    display: flex;
    gap: 20px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 15px;
    padding: 30px;
    margin: 30px 0;
}

.definition-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    flex-shrink: 0;
}

.definition-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #3b82f6;
}

/* Cookie Workflow */
.cookie-workflow {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.workflow-step {
    text-align: center;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.workflow-step:hover {
    background: rgba(255, 167, 38, 0.1);
    border-color: #ffa726;
    transform: translateY(-5px);
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ffa726, #ff6b6b);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0px 15px 0 0;
    padding: 10px;
}

.step-content h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: white;
}

.step-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Cookie Benefits */
.cookie-benefits {
    margin: 40px 0;
}

.cookie-benefits h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: #ffa726;
}

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

.benefit-item {
    text-align: center;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(34, 197, 94, 0.1);
    border-color: #22c55e;
    transform: translateY(-5px);
}

.benefit-item i {
    font-size: 2rem;
    color: #22c55e;
    margin-bottom: 15px;
}

.benefit-item h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: white;
}

.benefit-item p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Cookie Types */
.cookie-types-duration {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.cookie-type-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
}

.cookie-type-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 167, 38, 0.5);
    transform: translateY(-5px);
}

.type-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    margin-bottom: 20px;
}

.cookie-type-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.type-details p {
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

.type-features {
    margin-top: 20px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.feature-tag {
    background: rgba(255, 167, 38, 0.2);
    color: #ffa726;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Source Comparison */
.source-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.source-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
}

.source-item.first-party:hover {
    background: rgba(34, 197, 94, 0.1);
    border-color: #22c55e;
}

.source-item.third-party:hover {
    background: rgba(239, 68, 68, 0.1);
    border-color: #ef4444;
}

.source-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.source-header i {
    font-size: 1.5rem;
}

.first-party .source-header i {
    color: #22c55e;
}

.third-party .source-header i {
    color: #ef4444;
}

.source-header h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    margin: 0;
}

.source-content p {
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.source-examples {
    list-style: none;
    padding: 0;
}

.source-examples li {
    padding: 5px 0;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    padding-left: 20px;
}

.source-examples li::before {
    content: '◆';
    color: #ffa726;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Cookies Table */
.cookies-table {
    margin: 40px 0;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
}

.table-header {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.table-header h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
}

.table-header i {
    color: #ffa726;
}

.table-header p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.95rem;
}

.cookie-item {
    padding: 25px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.cookie-item:last-child {
    border-bottom: none;
}

.cookie-item:hover {
    background: rgba(255, 255, 255, 0.03);
}

.cookie-info h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffa726;
    font-family: 'Courier New', monospace;
}

.cookie-details {
    display: flex;
    gap: 30px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.detail-item i {
    color: #3b82f6;
}

.cookie-purpose {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin: 0;
}

/* Purposes Grid */
.purposes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.purpose-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
}

.purpose-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 167, 38, 0.5);
    transform: translateY(-5px);
}

.purpose-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    margin-bottom: 20px;
}

.purpose-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
}

.purpose-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.purpose-list {
    list-style: none;
    padding: 0;
}

.purpose-list li {
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    padding-left: 25px;
    font-size: 0.9rem;
}

.purpose-list li::before {
    content: '◆';
    color: #22c55e;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Third Party Services */
.third-party-services {
    margin: 40px 0;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 167, 38, 0.5);
    transform: translateY(-3px);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.service-logo {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
}

.service-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: white;
}

.service-category {
    background: rgba(255, 167, 38, 0.2);
    color: #ffa726;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.service-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.service-cookies h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: white;
}

.cookie-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.cookie-tag {
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    font-family: 'Courier New', monospace;
}

.service-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.service-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #3b82f6;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    justify-content: center;
}

.service-link:hover {
    color: #ffa726;
}

/* Third Party Note */
.third-party-note {
    display: flex;
    gap: 20px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 15px;
    padding: 25px;
    margin-top: 40px;
}

.note-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    flex-shrink: 0;
}

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

.note-content p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Browser Controls */
.browser-controls {
    margin: 40px 0;
}

.browser-item {
    display: flex;
    gap: 25px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.browser-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 167, 38, 0.5);
}

.browser-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    flex-shrink: 0;
}

.browser-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
}

.browser-steps ol {
    margin-bottom: 15px;
    padding-left: 20px;
}

.browser-steps li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.browser-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #3b82f6;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.browser-link:hover {
    color: #ffa726;
}

/* Cookie Preferences */
.cookie-preferences {
    margin: 40px 0;
}

.preference-demo {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
}

.preference-demo h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
}

.preference-demo p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
}

.preference-panel {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
}

.preference-category {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.preference-category:last-of-type {
    border-bottom: none;
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    transition: all 0.3s ease;
}

.category-header:hover {
    background: rgba(255, 255, 255, 0.03);
}

.category-info h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: white;
}

.category-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

.category-toggle {
    display: flex;
    align-items: center;
    gap: 15px;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.2);
    transition: 0.3s;
    border-radius: 24px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

input:checked + .toggle-slider {
    background-color: #22c55e;
}

input:checked + .toggle-slider:before {
    transform: translateX(26px);
}

input:disabled + .toggle-slider {
    background-color: rgba(255, 167, 38, 0.5);
    cursor: not-allowed;
}

.toggle-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.preference-actions {
    padding: 25px;
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Cookie Deletion */
.cookie-deletion {
    margin: 40px 0;
}

.deletion-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.deletion-method {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.deletion-method:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 167, 38, 0.5);
    transform: translateY(-5px);
}

.method-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    margin: 0 auto 20px;
}

.deletion-method h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
}

.deletion-method p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.method-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.step-item {
    background: rgba(255, 167, 38, 0.2);
    color: #ffa726;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.step-arrow {
    color: rgba(255, 255, 255, 0.5);
    font-weight: bold;
}

.deletion-warning {
    display: flex;
    gap: 20px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 15px;
    padding: 25px;
}

.warning-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    flex-shrink: 0;
}

.warning-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    /* margin-bottom: 10px; */
    color: #ef4444;
    padding-left: 20px;
}

.warning-content p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Mobile Storage Types */
.mobile-storage-types {
    margin: 40px 0;
}

.storage-type {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.storage-type:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 167, 38, 0.5);
    transform: translateY(-3px);
}

.storage-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    margin-bottom: 20px;
}

.storage-type h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.storage-details p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.storage-examples h5 {
    font-size: 1rem;
    font-weight: 600;
    margin: 20px 0 10px;
    color: #ffa726;
}

.storage-examples ul {
    list-style: none;
    padding: 0;
}

.storage-examples li {
    padding: 5px 0;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    padding-left: 20px;
    font-size: 0.9rem;
}

.storage-examples li::before {
    content: '◆';
    color: #ffa726;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Mobile Data Management */
.mobile-data-management {
    margin: 40px 0;
}

.platform-controls {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.platform-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
}

.platform-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 167, 38, 0.5);
    transform: translateY(-5px);
}

.platform-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    margin-bottom: 20px;
}

.platform-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.platform-steps h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffa726;
}

.platform-steps ol {
    padding-left: 20px;
}

.platform-steps li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.in-app-controls {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
}

.in-app-controls h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
}

.in-app-controls p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
}

.control-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.control-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.control-option:hover {
    background: rgba(255, 167, 38, 0.1);
    border-color: #ffa726;
    color: #ffa726;
}

.control-option i {
    color: #3b82f6;
    font-size: 1.1rem;
}

/* Update Process */
.update-process {
    margin: 40px 0;
}

.update-step {
    display: flex;
    gap: 25px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.update-step:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 167, 38, 0.5);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: white;
    line-height: normal;
}

.step-content p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.95rem;
}

/* Update History */
.update-history {
    margin: 40px 0;
}

.update-history h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: white;
}

.history-timeline {
    position: relative;
    padding-left: 30px;
}

.history-timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(135deg, #ffa726, #ff6b6b);
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    margin-left: 20px;
}

/*
.timeline-item::before {
    content: '';
    position: absolute;
    left: -35px;
    top: 25px;
    width: 12px;
    height: 12px;
    background: #ffa726;
    border-radius: 50%;
    border: 3px solid #0a0a0f;
} */

.timeline-date {
    background: rgba(255, 167, 38, 0.2);
    color: #ffa726;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 10px;
}

.timeline-content h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: white;
}

.timeline-content p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.9rem;
}

/* Update Subscription */
.update-subscription {
    margin: 40px 0;
}

.subscription-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
}

.subscription-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 167, 38, 0.5);
}

.subscription-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    margin: 0 auto 25px;
}

.subscription-content h4 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
}

.subscription-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    font-size: 1rem;
}

.subscription-form {
    display: flex;
    gap: 15px;
    max-width: 400px;
    margin: 0 auto;
}

.subscription-form .form-input {
    flex: 1;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 167, 38, 0.5);
    transform: translateY(-5px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    margin-bottom: 20px;
}

.contact-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.contact-details p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.contact-details a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-details a:hover {
    color: #ffa726;
}

.support-hours p {
    margin-bottom: 5px;
}

.response-time {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.response-time i {
    color: #22c55e;
}

.help-topics {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.help-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #3b82f6;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.help-link:hover {
    color: #ffa726;
}

/* Contact Form */
.contact-form-section {
    margin: 40px 0;
}

.contact-form-section h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: white;
}

.quick-contact-form {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.95rem;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: white;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #ffa726;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(255, 167, 38, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

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

.form-actions {
    text-align: center;
    margin-top: 25px;
}

/* Emergency Contact */
.emergency-contact {
    display: flex;
    gap: 20px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 15px;
    padding: 25px;
    margin-top: 40px;
}

.emergency-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    flex-shrink: 0;
}

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

.emergency-content p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Legal Actions */
.legal-actions {
    padding: 60px 0;
    background: rgba(255, 255, 255, 0.02);
}

.actions-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    text-align: center;
}

.actions-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: white;
}

.actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.action-btn:hover {
    background: rgba(255, 167, 38, 0.1);
    border-color: #ffa726;
    color: #ffa726;
    transform: translateY(-5px);
}

.action-btn i {
    font-size: 1.5rem;
    color: #3b82f6;
    transition: all 0.3s ease;
}

.action-btn:hover i {
    color: #ffa726;
}

/* Cookie Banner Demo */
.cookie-banner-demo {
    padding: 60px 0;
    background: rgba(255, 255, 255, 0.02);
}

.banner-demo {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.banner-demo h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.demo-banner {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    margin-top: 25px;
}

.banner-content {
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
}

.banner-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffa726, #ff6b6b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    flex-shrink: 0;
}

.banner-text {
    flex: 1;
}

.banner-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: white;
}

.banner-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
}

.banner-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-content {
        padding-top: 70px;
    }

    .legal-hero {
        padding: 80px 0 60px;
    }

    .legal-title {
        font-size: 2.5rem;
    }

    .legal-meta {
        flex-direction: column;
        gap: 20px;
    }

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

    .section-title {
        font-size: 1.8rem;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

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

    .cookie-workflow {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .cookie-types-duration {
        grid-template-columns: 1fr;
    }

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

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

    .browser-item {
        flex-direction: column;
        text-align: center;
    }

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

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

    .subscription-form {
        flex-direction: column;
    }

    .actions-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .banner-content {
        flex-direction: column;
        text-align: center;
    }

    .banner-actions {
        justify-content: center;
    }

    .cookie-details {
        flex-direction: column;
        gap: 15px;
    }

    .method-steps {
        flex-direction: column;
        gap: 8px;
    }

    .step-arrow {
        transform: rotate(90deg);
    }
}

@media (max-width: 480px) {
    .legal-title {
        font-size: 2rem;
    }

    .legal-icon {
        width: 80px;
        height: 80px;
        font-size: 32px;
    }

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

    .section-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

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

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

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


/* faq */

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

/* Page Content */
faq.page-content {
    min-height: 100vh;
    position: relative;
}

.faq .page-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
      radial-gradient(circle at 20% 80%, rgba(255, 107, 107, 0.1) 0%, transparent 50%),
      radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
      radial-gradient(circle at 40% 40%, rgba(255, 167, 38, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* Header */
.faq .faq-header {
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.faq .header-content {
    max-width: 800px;
    margin: 0 auto;
}

.faq .page-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
}

.faq .title-line {
    display: block;
}

.faq .joseph-gradient-text {
    background: linear-gradient(135deg, #ff6b6b 0%, #ffa726 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq .page-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Search Section */
.faq .search-section {
    padding: 0 0 60px;
    position: relative;
    z-index: 1;
}

.faq .search-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
    max-width: 600px;
    margin: 0 auto;
}

.faq .search-input-wrapper {
    position: relative;
}

.faq .search-input {
    width: 100%;
    padding: 16px 20px 16px 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.faq .search-input:focus {
    outline: none;
    border-color: #ffa726;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(255, 167, 38, 0.1);
}

.faq .search-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.faq .search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.5);
}

/* FAQ Content */
.faq .faq-content {
    padding: 0 0 30px;
    position: relative;
    z-index: 1;
}

.faq .faq-category {
    margin-bottom: 60px;
}

.faq .category-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    justify-content: flex-start;
}

.faq .category-icon {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 15px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 20px;
}

.faq category-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffffff;
}

.faq-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq .faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq .faq-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 167, 38, 0.3);
    transform: translateY(-2px);
}

.faq .faq-question {
    width: 100%;
    padding: 20px 25px;
    background: transparent;
    border: none;
    color: #ffffff;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    font-family: inherit;
}

.faq .faq-question:hover {
    background: rgba(255, 167, 38, 0.05);
}

.faq .question-text {
    flex: 1;
    padding-right: 20px;
}

.faq .chevron-icon {
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    font-size: 16px;
}

.faq .faq-item.active .chevron-icon {
    transform: rotate(180deg);
}

.faq .faq-answer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
    /* max-height: 0; */
    overflow: hidden;
    /* transition: all 0.3s ease; */
    padding: 25px;
    opacity: 1; /* â† BU Ã‡OK Ã–NEMLÄ°! */
}

.faq .faq-item.active .faq-answer {
    max-height: 500px;
    padding: 20px 25px 25px;
    opacity: 1; /* â† BU DA Ã‡OK Ã–NEMLÄ°! */


}

.faq .answer-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    /* white-space: pre-line; */
    width: 100%;
    display: flex;
    padding: 20px 0;
}

/* No Results */
.faq .no-results {
    text-align: center;
    padding: 80px 20px;
}

.faq .no-results-icon {
    font-size: 64px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 20px;
}

.faq .no-results-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffffff;
}

.faq .no-results-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
}



/* Buttons */
.faq .joseph-button-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.faq .joseph-button-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

.faq .contact-button {
    font-family: inherit;
}

/* Hidden state for filtered items */
.faq .faq-category.hidden {
    display: none;
}

.faq .faq-item.hidden {
    display: none;
}
.faq-footer .footer-content{display: flex;align-items: center;flex-direction: column; gap: 25px;    margin-bottom: 80px;}
.faq-footer .footer-title{margin: 0;}

.page-content.terms .contact-methods{display: flex; flex-wrap: wrap;}
.page-content.gdpr .section-content p{width: 100%;}
.page-content.gdpr .right-card {align-items: center;}

/* Responsive Design */
@media (max-width: 768px) {
    .faq .page-title {
        font-size: 2.5rem;
    }

    .faq .category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .faq .category-icon {
        align-self: flex-start;
    }

    .faq .faq-question {
        padding: 16px 20px;
        font-size: 15px;
    }

    .faq .question-text {
        padding-right: 15px;
    }

    .faq .faq-answer {
        padding: 0 20px 20px;
    }

    .faq .faq-item.active .faq-answer {
        padding-top: 20px;
    }

    .faq .search-card {
        padding: 20px;
    }

    .faq .search-input {
        padding: 14px 16px 14px 45px;
        font-size: 15px;
    }

    .faq .search-icon {
        left: 14px;
    }
}

@media (max-width: 480px) {
    .faq .page-title {
        font-size: 2rem;
    }

    .faq .category-title {
        font-size: 1.5rem;
    }

    .faq .footer-title {
        font-size: 1.5rem;
    }

    .faq .joseph-button-primary {
        padding: 14px 24px;
        font-size: 15px;
    }
}
