
        /* ABOUT SECTION STYLES */
        .about-section {
            background: #fafafa;
            overflow: hidden;
        }

        /* About Hero */
        .about-hero {
            position: relative;
            height: 65vh;
            min-height: 500px;
            display: flex;
            align-items: center;
            /* margin-bottom: 8rem; */
        }

        .about-hero-bg {
            position: absolute;
            inset: 0;
            overflow: hidden;
        }

        .hero-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            scale: 1;
            transition: scale 8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .about-hero:hover .hero-img {
            scale: 1.05;
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(194, 38, 32, 0.85) 0%, rgba(26, 26, 26, 0.75) 100%);
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            color: white;
        }

        .hero-tag {
            display: inline-block;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            padding: 0.5rem 1.25rem;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border-radius: 100px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            margin-bottom: 2rem;
            animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .hero-title {
            font-size: 4.5rem;
            font-weight: 700;
            line-height: 1.1;
            letter-spacing: -0.03em;
            margin-bottom: 1.5rem;
            animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.1s backwards;
        }

        .hero-subtitle {
            font-size: 1.5rem;
            line-height: 1.5;
            opacity: 0.95;
            max-width: 650px;
            animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s backwards;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Story Section */
        .story-section {
            padding: 6rem 0;
        }

        .story-image-wrapper {
            position: relative;
            height: 600px;
        }

        .story-image-main {
            position: relative;
            height: 500px;
            border-radius: 24px;
            overflow: hidden;
            box-shadow:
                0 20px 60px rgba(0, 0, 0, 0.15),
                0 0 0 1px rgba(0, 0, 0, 0.05);
        }

        .story-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .story-image-main:hover .story-img {
            transform: scale(1.05);
        }

        .image-badge {
            position: absolute;
            bottom: 2rem;
            left: 2rem;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            padding: 1.5rem 2rem;
            border-radius: 16px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
        }

        .badge-number {
            display: block;
            font-size: 2.5rem;
            font-weight: 700;
            color: #c22620;
            line-height: 1;
            margin-bottom: 0.5rem;
        }

        .badge-text {
            display: block;
            font-size: 0.875rem;
            font-weight: 600;
            color: #1a1a1a;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .story-image-float {
            position: absolute;
            top: 0;
            right: -3rem;
            width: 280px;
            height: 200px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow:
                0 20px 60px rgba(194, 38, 32, 0.25),
                0 0 0 1px rgba(0, 0, 0, 0.05);
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-20px);
            }
        }

        .float-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .story-content {
            padding-left: 2rem;
        }

        .section-tag {
            display: inline-block;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: #c22620;
            padding: 0.5rem 1.25rem;
            background: rgba(194, 38, 32, 0.08);
            border-radius: 100px;
            margin-bottom: 1.5rem;
        }

        .section-title {
            font-size: 3rem;
            font-weight: 700;
            line-height: 1.2;
            letter-spacing: -0.02em;
            color: #1a1a1a;
            margin-bottom: 2rem;
        }

        .section-text {
            font-size: 1.125rem;
            line-height: 1.7;
            color: #7c7b7b;
            margin-bottom: 1.5rem;
        }

        .story-stats {
            display: flex;
            gap: 3rem;
            margin-top: 3rem;
            padding-top: 3rem;
            border-top: 2px solid rgba(0, 0, 0, 0.06);
        }

        .stat-item {
            text-align: left;
        }

        .stat-value {
            font-size: 3rem;
            font-weight: 700;
            color: #c22620;
            line-height: 1;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 0.875rem;
            font-weight: 600;
            color: #7c7b7b;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        /* Why Section */
        .why-section {
            padding: 8rem 0;
            background: white;
        }

        .section-header {
            max-width: 700px;
            margin: 0 auto 5rem;
        }

        .section-subtitle {
            font-size: 1.25rem;
            line-height: 1.6;
            color: #7c7b7b;
            margin-top: 1rem;
        }

        .why-grid {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            gap: 1.5rem;
        }

        .why-card {
            position: relative;
            grid-column: span 4;
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow:
                0 4px 20px rgba(0, 0, 0, 0.06),
                0 0 0 1px rgba(0, 0, 0, 0.04);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .why-card.card-large {
            grid-column: span 8;
            grid-row: span 2;
        }

        .why-card.card-wide {
            grid-column: span 12;
        }

        .why-card:hover {
            transform: translateY(-8px);
            box-shadow:
                0 20px 60px rgba(0, 0, 0, 0.12),
                0 0 0 1px rgba(194, 38, 32, 0.1);
        }

        .card-image {
            position: relative;
            height: 200px;
            overflow: hidden;
        }

        .card-large .card-image {
            height: 100%;
            position: absolute;
            inset: 0;
        }

        .card-wide .card-image {
            height: 250px;
        }

        .card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .why-card:hover .card-image img {
            transform: scale(1.1);
        }

        .card-gradient {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 0%, rgba(26, 26, 26, 0.4) 100%);
            opacity: 0;
            transition: opacity 0.4s;
        }

        .why-card:hover .card-gradient {
            opacity: 1;
        }

        .card-content {
            padding: 2rem;
            position: relative;
            z-index: 2;
        }

        .card-large .card-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.98) 20%, white 100%);
            padding: 3rem 2.5rem 2.5rem;
        }

        .card-icon {
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, #c22620, #a51d18);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            box-shadow: 0 4px 16px rgba(194, 38, 32, 0.3);
        }

        .card-icon svg {
            width: 28px;
            height: 28px;
            stroke: white;
            stroke-width: 2.5;
        }

        .card-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 1rem;
            line-height: 1.3;
        }

        .card-text {
            font-size: 1rem;
            line-height: 1.6;
            color: #7c7b7b;
        }

        .card-badge {
            display: inline-block;
            margin-top: 1.5rem;
            padding: 0.5rem 1.25rem;
            background: rgba(194, 38, 32, 0.08);
            color: #c22620;
            font-size: 0.875rem;
            font-weight: 600;
            border-radius: 100px;
        }

        .inventory-icons {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .inv-icon {
            width: 48px;
            height: 48px;
            background: rgba(194, 38, 32, 0.06);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            transition: all 0.3s;
        }

        .why-card:hover .inv-icon {
            background: rgba(194, 38, 32, 0.12);
            transform: translateY(-4px);
        }

        /* Values Section */
        .values-section {
            padding: 8rem 0;
            background: #1a1a1a;
            color: white;
        }

        .values-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
            align-items: center;
        }

        .values-section .section-tag {
            background: rgba(194, 38, 32, 0.2);
            color: #ff6b66;
        }

        .values-section .section-title {
            color: white;
        }

        .values-list {
            margin-top: 3rem;
        }

        .value-item {
            display: flex;
            gap: 2rem;
            padding: 2rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s;
        }

        .value-item:hover {
            padding-left: 1rem;
            background: rgba(194, 38, 32, 0.05);
            margin-left: -1rem;
            margin-right: -1rem;
            padding-right: 1rem;
        }

        .value-number {
            font-size: 2rem;
            font-weight: 700;
            color: #c22620;
            font-family: 'JetBrains Mono', monospace;
            flex-shrink: 0;
        }

        .value-info h4 {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .value-info p {
            font-size: 1rem;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.7);
        }

        .visual-circle {
            width: 100%;
            max-width: 500px;
            aspect-ratio: 1;
            border-radius: 50%;
            overflow: hidden;
            box-shadow:
                0 0 0 20px rgba(194, 38, 32, 0.1),
                0 0 0 40px rgba(194, 38, 32, 0.05),
                0 30px 80px rgba(0, 0, 0, 0.3);
            animation: pulse 4s ease-in-out infinite;
            margin: 0 auto;
        }

        @keyframes pulse {

            0%,
            100% {
                transform: scale(1);
                box-shadow:
                    0 0 0 20px rgba(194, 38, 32, 0.1),
                    0 0 0 40px rgba(194, 38, 32, 0.05),
                    0 30px 80px rgba(0, 0, 0, 0.3);
            }

            50% {
                transform: scale(1.02);
                box-shadow:
                    0 0 0 25px rgba(194, 38, 32, 0.15),
                    0 0 0 50px rgba(194, 38, 32, 0.08),
                    0 35px 90px rgba(0, 0, 0, 0.4);
            }
        }

        .visual-circle img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* CTA Section */
        .about-cta {
            padding: 8rem 0;
        }

        .cta-card {
            position: relative;
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            gap: 4rem;
            background: white;
            border-radius: 32px;
            padding: 4rem;
            box-shadow:
                0 20px 80px rgba(0, 0, 0, 0.08),
                0 0 0 1px rgba(0, 0, 0, 0.04);
            overflow: hidden;
        }

        .cta-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(194, 38, 32, 0.03) 0%, transparent 50%);
            pointer-events: none;
        }

        .cta-title {
            font-size: 2.5rem;
            font-weight: 700;
            line-height: 1.2;
            color: #1a1a1a;
            margin-bottom: 1rem;
        }

        .cta-text {
            font-size: 1.125rem;
            line-height: 1.6;
            color: #7c7b7b;
            margin-bottom: 2.5rem;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
        }

        .btn-primary,
        .btn-secondary {
            padding: 1rem 2.5rem;
            font-size: 1rem;
            font-weight: 600;
            border: none;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .btn-primary {
            background: linear-gradient(135deg, #c22620, #a51d18);
            color: white;
            box-shadow:
                0 4px 16px rgba(194, 38, 32, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow:
                0 8px 24px rgba(194, 38, 32, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.25);
        }

        .btn-secondary {
            background: white;
            color: #1a1a1a;
            border: 2px solid rgba(0, 0, 0, 0.1);
        }

        .btn-secondary:hover {
            border-color: #c22620;
            color: #c22620;
            transform: translateY(-2px);
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
        }

        .cta-image {
            border-radius: 20px;
            overflow: hidden;
            height: 400px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        }

        .cta-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Responsive */
        @media (max-width: 991px) {
            .hero-title {
                font-size: 3rem;
            }

            .hero-subtitle {
                font-size: 1.25rem;
            }

            .story-image-wrapper {
                height: 400px;
                margin-bottom: 3rem;
            }

            .story-image-main {
                height: 100%;
            }

            .story-image-float {
                display: none;
            }

            .story-content {
                padding-left: 0;
            }

            .section-title {
                font-size: 2.5rem;
            }

            .why-card {
                grid-column: span 6 !important;
            }

            .why-card.card-large,
            .why-card.card-wide {
                grid-column: span 12 !important;
                grid-row: span 1 !important;
            }

            .card-large .card-image {
                position: relative;
                height: 300px;
            }

            .card-large .card-content {
                position: relative;
                background: white;
                padding: 2rem;
            }

            .values-wrapper {
                grid-template-columns: 1fr;
                gap: 4rem;
            }

            .cta-card {
                grid-template-columns: 1fr;
                padding: 3rem;
            }

            .cta-image {
                order: -1;
            }
        }

        @media (max-width: 767px) {
            .about-hero {
                height: 50vh;
                min-height: 400px;
                margin-bottom: 4rem;
            }

            .hero-title {
                font-size: 2.5rem;
            }

            .hero-subtitle {
                font-size: 1.125rem;
            }

            .story-section {
                padding: 4rem 0;
            }

            .section-title {
                font-size: 2rem;
            }

            .section-text {
                font-size: 1rem;
            }

            .story-stats {
                gap: 2rem;
            }

            .stat-value {
                font-size: 2.5rem;
            }

            .why-section,
            .values-section,
            .about-cta {
                padding: 4rem 0;
            }

            .why-card {
                grid-column: span 12 !important;
            }

            .value-item {
                gap: 1.5rem;
            }

            .value-number {
                font-size: 1.5rem;
            }

            .value-info h4 {
                font-size: 1.125rem;
            }

            .cta-card {
                padding: 2rem;
            }

            .cta-title {
                font-size: 2rem;
            }

            .cta-buttons {
                flex-direction: column;
            }

            .btn-primary,
            .btn-secondary {
                width: 100%;
            }
        }

        @media (max-width: 575px) {
            .hero-title {
                font-size: 2rem;
            }

            .hero-subtitle {
                font-size: 1rem;
            }

            .section-header {
                margin-bottom: 3rem;
            }

            .section-title {
                font-size: 1.75rem;
            }

            .story-stats {
                flex-direction: column;
                gap: 1.5rem;
            }

            .cta-image {
                height: 250px;
            }
        }
    
/* PRIVACY POLICY SECTION STYLES */
.privacy-section {
    background: #fafafa;
    padding: 6rem 1.5rem;
    min-height: 100vh;
}

.privacy-container {
    max-width: 900px;
    margin: 0 auto;
}

/* Header */
.privacy-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s cubic-bezier(0.4,0,0.2,1);
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(194,38,32,0.08);
    color: #c22620;
    border-radius: 24px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(194,38,32,0.15);
}

.privacy-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.privacy-subtitle {
    font-size: 1.125rem;
    color: #7c7b7b;
    max-width: 650px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.last-updated {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(0,0,0,0.03);
    border-radius: 12px;
    font-size: 0.875rem;
    color: #7c7b7b;
    border: 1px solid rgba(0,0,0,0.06);
}

.last-updated svg {
    color: #c22620;
}

/* Accordion */
.privacy-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    animation: fadeIn 1s cubic-bezier(0.4,0,0.2,1) 0.2s backwards;
}

.accordion-item {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(12px) saturate(180%);
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.06);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

.accordion-item:hover {
    border-color: rgba(194,38,32,0.2);
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.accordion-item.active {
    background: white;
    border-color: rgba(194,38,32,0.25);
    box-shadow: 
        0 4px 20px rgba(194,38,32,0.08),
        0 8px 40px rgba(0,0,0,0.06);
}

.accordion-trigger {
    width: 100%;
    padding: 1.5rem;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
    position: relative;
}

.accordion-trigger::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(194,38,32,0.04), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.accordion-trigger:hover::before {
    opacity: 1;
}

.trigger-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.trigger-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(194,38,32,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

.trigger-icon svg {
    stroke: #c22620;
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
}

.accordion-item.active .trigger-icon {
    background: #c22620;
    transform: scale(1.05);
}

.accordion-item.active .trigger-icon svg {
    stroke: white;
}

.accordion-trigger:hover .trigger-icon svg {
    transform: scale(1.1);
}

.trigger-text {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1a1a;
    text-align: left;
    transition: color 0.3s;
}

.accordion-item.active .trigger-text {
    color: #c22620;
}

.accordion-chevron {
    stroke: #7c7b7b;
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.accordion-item.active .accordion-chevron {
    transform: rotate(180deg);
    stroke: #c22620;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
}

.accordion-item.active .accordion-content {
    max-height: 2000px;
}

.content-inner {
    padding: 0 1.5rem 1.5rem;
    animation: fadeInContent 0.5s cubic-bezier(0.4,0,0.2,1);
}

@keyframes fadeInContent {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-inner p {
    color: #1a1a1a;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 0.938rem;
}

.content-inner p:last-child {
    margin-bottom: 0;
}

.privacy-list {
    list-style: none;
    padding: 0;
    margin: 1.25rem 0;
}

.privacy-list li {
    padding: 0.75rem 0;
    padding-left: 1.75rem;
    color: #1a1a1a;
    line-height: 1.6;
    font-size: 0.938rem;
    position: relative;
}

.privacy-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1.125rem;
    width: 6px;
    height: 6px;
    background: #c22620;
    border-radius: 50%;
}

.privacy-list li strong {
    color: #c22620;
    font-weight: 600;
}

.content-inner a {
    color: #c22620;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid rgba(194,38,32,0.3);
    transition: all 0.2s;
}

.content-inner a:hover {
    border-bottom-color: #c22620;
}

/* Info Boxes */
.info-box {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: rgba(194,38,32,0.05);
    border-left: 3px solid #c22620;
    border-radius: 8px;
    margin-top: 1.5rem;
}

.info-box svg {
    flex-shrink: 0;
    stroke: #c22620;
    margin-top: 0.125rem;
}

.info-box span {
    color: #1a1a1a;
    font-size: 0.875rem;
    line-height: 1.6;
}

.info-box.warning {
    background: rgba(255,152,0,0.05);
    border-left-color: #ff9800;
}

.info-box.warning svg {
    stroke: #ff9800;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(0,0,0,0.02);
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.06);
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

.contact-card:hover {
    background: rgba(194,38,32,0.04);
    border-color: rgba(194,38,32,0.2);
    transform: translateY(-2px);
}

.contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(194,38,32,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    stroke: #c22620;
}

.contact-info {
    flex: 1;
}

.contact-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #7c7b7b;
    margin-bottom: 0.375rem;
}

.contact-info a,
.contact-info span {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 0.938rem;
    line-height: 1.5;
    font-weight: 500;
}

.contact-info a {
    transition: color 0.2s;
}

.contact-info a:hover {
    color: #c22620;
}

/* Footer CTA */
.privacy-footer {
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(194,38,32,0.95), rgba(165,29,24,0.95));
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s cubic-bezier(0.4,0,0.2,1) 0.4s backwards;
}

.privacy-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.6;
}

.footer-content {
    position: relative;
    z-index: 1;
}

.footer-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
}

.footer-content p {
    font-size: 1rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 2rem;
}

.footer-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: white;
    color: #c22620;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

.footer-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(0,0,0,0.3);
}

.footer-cta svg {
    stroke: #c22620;
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
}

.footer-cta:hover svg {
    transform: translateX(4px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 991px) {
    .privacy-section {
        padding: 4rem 1rem;
    }
    
    .privacy-title {
        font-size: 2.75rem;
    }
    
    .privacy-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 767px) {
    .privacy-section {
        padding: 3rem 1rem;
    }
    
    .privacy-header {
        margin-bottom: 3rem;
    }
    
    .privacy-title {
        font-size: 2.25rem;
    }
    
    .privacy-subtitle {
        font-size: 0.938rem;
    }
    
    .accordion-trigger {
        padding: 1.25rem;
    }
    
    .trigger-icon {
        width: 38px;
        height: 38px;
    }
    
    .trigger-text {
        font-size: 1rem;
    }
    
    .content-inner {
        padding: 0 1.25rem 1.25rem;
    }
    
    .privacy-footer {
        padding: 2rem 1.5rem;
    }
    
    .footer-content h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 575px) {
    .privacy-title {
        font-size: 1.875rem;
    }
    
    .privacy-subtitle {
        font-size: 0.875rem;
    }
    
    .section-badge {
        font-size: 0.688rem;
        padding: 0.4rem 1rem;
    }
    
    .last-updated {
        font-size: 0.813rem;
        padding: 0.625rem 1.25rem;
    }
    
    .accordion-trigger {
        padding: 1rem;
    }
    
    .trigger-icon {
        width: 36px;
        height: 36px;
    }
    
    .trigger-text {
        font-size: 0.938rem;
    }
    
    .content-inner {
        padding: 0 1rem 1rem;
    }
    
    .content-inner p,
    .privacy-list li {
        font-size: 0.875rem;
    }
    
    .privacy-footer {
        padding: 1.75rem 1.25rem;
        margin-top: 3rem;
    }
    
    .footer-content h3 {
        font-size: 1.25rem;
    }
    
    .footer-content p {
        font-size: 0.875rem;
    }
    
    .footer-cta {
        padding: 0.875rem 1.5rem;
        font-size: 0.875rem;
    }
}