/* Reset and Base */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Spline Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #f8f8f5;
    color: #181811;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

/* Local Fonts */
@font-face {
    font-family: 'Spline Sans';
    src: url('../fonts/SplineSans-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Spline Sans';
    src: url('../fonts/SplineSans-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Variables */
:root {
    --primary: #f9f506;
    --bg-light: #f8f8f5;
    --bg-alt: #fcfcf9;
    --bg-dark: #23220f;
    --text-main: #181811;
    --text-secondary: #8c8b5f;
    --border: #e6e6db;
}

/* Material Symbols */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.star-filled {
    font-variation-settings: 'FILL' 1;
    color: var(--primary);
}

/* Layout */
.page-container {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    min-height: 100vh;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
}

.container {
    max-width: 560px;
    margin: 0 auto;
}

.section {
    padding: 4rem 1.5rem;
}

.section-alt {
    background: var(--bg-alt);
}

.text-center {
    text-align: center;
}

/* Typography */
h1 {
    font-size: clamp(1.875rem, 5vw, 3rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.125rem;
    font-weight: 700;
}

.section-desc {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* Header */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #f5f5f0;
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 40;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.header-logo .material-symbols-outlined {
    font-size: 1.875rem;
}

.header-title {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.header-subtitle {
    font-size: 0.75rem;
    font-weight: 400;
}

.btn-header {
    background: var(--primary);
    color: var(--text-main);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.2s;
}

.btn-header:hover {
    opacity: 0.9;
}

/* Hero */
.hero {
    padding: 2rem 1.5rem 3rem;
    text-align: center;
}

.hero-content {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    background: rgba(249, 245, 6, 0.2);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge .material-symbols-outlined {
    font-size: 0.875rem;
}

.hero-subtitle {
    color: var(--text-secondary);
    font-size: 1.125rem;
    font-weight: 700;
}

/* Video */
.video-container {
    margin-top: 1rem;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    width: 100%;
    aspect-ratio: 16/9;
    position: relative;
    background: #000;
    cursor: pointer;
}

.video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    transition: background 0.2s;
}

.video-container:hover .play-overlay {
    background: rgba(0, 0, 0, 0.4);
}

.play-button {
    width: 3.5rem;
    height: 3.5rem;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s;
}

.video-container:hover .play-button {
    transform: scale(1.1);
}

.play-button .material-symbols-outlined {
    font-size: 1.875rem;
    margin-left: 0.125rem;
}

.video-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--primary);
    color: var(--text-main);
    font-size: 1.125rem;
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 9999px;
    text-decoration: none;
    box-shadow: 0 10px 15px -3px rgba(249, 245, 6, 0.3);
    transition: all 0.2s;
}

.btn-primary:hover {
    box-shadow: 0 20px 25px -5px rgba(249, 245, 6, 0.5);
    transform: translateY(-2px);
}

.btn-hero {
    width: 100%;
    margin-top: 1rem;
}

.btn-large {
    display: block;
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* Pain Points */
.pain-grid {
    display: grid;
    gap: 1rem;
    text-align: left;
}

.pain-card {
    background: #fff;
    padding: 1.25rem;
    border-radius: 1rem;
    border: 1px solid var(--border);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.pain-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.pain-card p {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* Solution */
.solution-icon {
    font-size: 3rem;
    color: var(--primary);
    display: block;
    margin-bottom: 1rem;
}

.solution-text {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.solution-box {
    background: rgba(249, 245, 6, 0.1);
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(249, 245, 6, 0.2);
}

.solution-quote {
    font-size: 1.125rem;
    font-weight: 700;
}

.solution-highlight {
    margin-top: 1rem;
    font-weight: 700;
    color: var(--primary);
    background: rgba(0, 0, 0, 0.8);
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 0.25rem;
}

/* Testimonials */
.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.testimonial-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid var(--border);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.stars {
    display: flex;
    margin-bottom: 0.75rem;
}

.testimonial-text {
    font-size: 0.875rem;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonial-img {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    object-fit: cover;
    background: #e5e7eb;
}

.author-name {
    font-size: 0.875rem;
    font-weight: 700;
}

.author-location {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.testimonial-cta {
    text-align: center;
    font-weight: 700;
    font-size: 1.125rem;
    margin-top: 1.5rem;
}

.highlight-badge {
    background: var(--primary);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
}

/* Benefits */
.benefits-box {
    background: #fff;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border);
}

.benefits-box h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.check-icon {
    color: #16a34a;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    font-size: 0.875rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f3f4f6;
}

.benefits-list li:last-child {
    border: none;
    padding-bottom: 0;
}

/* Gallery */
.section-gallery {
    background: #000;
    color: #fff;
    padding: 3rem 1rem;
}

.gallery-badge {
    display: inline-block;
    background: var(--primary);
    color: #000;
    padding: 0.25rem 0.75rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 3rem;
}

.gallery-item {
    border-radius: 0.75rem;
    background: linear-gradient(to bottom right, #1f2937, #111827);
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.2s;
}

.gallery-item:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.gallery-img-wrap {
    aspect-ratio: 1;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
}

.gallery-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s;
    filter: drop-shadow(0 10px 8px rgba(0, 0, 0, 0.04));
}

.gallery-item:hover .gallery-img-wrap img {
    transform: scale(1.1);
}

.gallery-item p {
    font-size: 0.875rem;
    font-weight: 700;
    text-align: center;
    padding: 1rem;
    background: linear-gradient(to top, #000, rgba(0, 0, 0, 0.8), transparent);
}

.accessories-title {
    font-size: 1.25rem;
    color: var(--primary);
    text-align: center;
    margin-bottom: 1.5rem;
}

.accessories-desc {
    text-align: center;
    color: #9ca3af;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.accessories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .accessories-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.accessory-item {
    border-radius: 0.75rem;
    background: linear-gradient(to bottom right, #1f2937, #111827);
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.2s;
}

.accessory-item:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.accessory-img-wrap {
    aspect-ratio: 1;
    padding: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
}

.accessory-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s;
}

.accessory-item:hover .accessory-img-wrap img {
    transform: scale(1.1);
}

.accessory-item p {
    font-size: 0.625rem;
    font-weight: 700;
    text-align: center;
    padding: 0.5rem;
    background: rgba(0, 0, 0, 0.8);
}

/* Accordion */
.accordion-container {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.accordion-item {
    background: #fff;
    border-radius: 0.75rem;
    border: 1px solid var(--border);
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    padding: 1rem 1.25rem;
    background: none;
    border: none;
    font-size: 0.875rem;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-header:hover {
    background: #fafafa;
}

.accordion-header .material-symbols-outlined {
    transition: transform 0.2s;
}

.accordion-item.open .accordion-header .material-symbols-outlined {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 1.25rem;
}

.accordion-item.open .accordion-content {
    max-height: 500px;
    padding: 0 1.25rem 1rem;
}

.accordion-content ul {
    padding-left: 1.25rem;
    list-style: disc;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    font-size: 0.875rem;
}

/* Bonuses */
.bonus-title {
    color: #dc2626;
}

.bonus-grid {
    display: grid;
    gap: 1rem;
}

.bonus-card {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border: 1px dashed var(--primary);
    border-radius: 0.75rem;
    background: rgba(249, 245, 6, 0.05);
}

.bonus-number {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.bonus-card h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.bonus-card p {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.bonus-value {
    font-size: 0.75rem;
    font-weight: 700;
    color: #16a34a;
}

.bonus-total {
    margin-top: 2rem;
    text-align: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    background: #000;
    padding: 0.75rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: rotate(1deg);
}

/* Offer Section */
.section-offer {
    background: var(--text-main);
    color: #fff;
    padding: 4rem 1.5rem;
    position: relative;
    overflow: hidden;
}

.offer-container {
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.section-offer h2 {
    font-size: 1.875rem;
    font-weight: 900;
    text-align: center;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.offer-subtitle {
    text-align: center;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.countdown-box {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
}

.countdown-box p {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.countdown {
    font-family: monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.price-card {
    background: #fff;
    color: var(--text-main);
    border-radius: 1.5rem;
    padding: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.price-row {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 1rem;
}

.price-old {
    font-size: 1.5rem;
    color: #9ca3af;
    text-decoration: line-through;
    font-weight: 700;
}

.price-new {
    font-size: 3.75rem;
    font-weight: 900;
    color: #dc2626;
    letter-spacing: -0.05em;
}

.price-currency {
    font-size: 1.25rem;
    font-weight: 700;
}

.btn-checkout {
    display: block;
    width: 100%;
    background: var(--primary);
    color: var(--text-main);
    font-size: 1.25rem;
    font-weight: 700;
    padding: 1.25rem;
    border-radius: 0.75rem;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: 0 4px 0 rgba(0, 0, 0, 0.2);
    transition: all 0.2s;
    margin-bottom: 1rem;
}

.btn-checkout:hover {
    box-shadow: none;
    transform: translateY(4px);
}

.checkout-note {
    text-align: center;
    font-size: 0.75rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.features-list {
    border-top: 1px solid #f3f4f6;
    padding-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.feature .material-symbols-outlined {
    color: #22c55e;
    font-size: 1.125rem;
}

.payment-methods {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #f3f4f6;
}

.payment-methods p {
    font-size: 0.75rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.5rem;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    opacity: 0.6;
}

/* Guarantee */
.guarantee-icon {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background: #fff;
    color: #16a34a;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid #16a34a;
    margin: 0 auto 1rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.guarantee-icon .material-symbols-outlined {
    font-size: 2.5rem;
}

.guarantee-text {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.guarantee-bold {
    font-weight: 700;
}

/* Certification */
.certification-box {
    text-align: center;
    border: 2px solid rgba(249, 245, 6, 0.3);
    padding: 2rem;
    border-radius: 1rem;
    position: relative;
}

.cert-icon {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 0 1rem;
    color: var(--primary);
    font-size: 3rem;
}

.certification-box h2 {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.certification-box p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.btn-dark {
    display: inline-block;
    background: var(--text-main);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    transition: opacity 0.2s;
}

.btn-dark:hover {
    opacity: 0.9;
}

/* FAQ */
.faq-accordion .accordion-content {
    font-size: 0.875rem;
}

/* Story */
.story-box {
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 1rem;
    margin-bottom: 2rem;
    text-align: left;
}

.story-box p {
    margin-bottom: 1rem;
}

.story-highlight {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.story-box ul {
    padding-left: 1.25rem;
    list-style: disc;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.story-cta {
    font-weight: 700;
    color: var(--primary);
    background: #000;
    padding: 0.5rem;
    border-radius: 0.25rem;
    text-align: center;
}

/* Recap */
.section-recap {
    background: var(--bg-dark);
    color: #fff;
    padding: 4rem 1.5rem;
}

.recap-table {
    border: 1px solid #374151;
    border-radius: 0.75rem;
    overflow: hidden;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.recap-header {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem;
    background: #1f2937;
    font-weight: 700;
    border-bottom: 1px solid #374151;
}

.recap-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem;
    border-bottom: 1px solid #374151;
}

.recap-row:nth-child(odd) {
    background: rgba(255, 255, 255, 0.02);
}

.recap-more {
    color: #9ca3af;
    font-style: italic;
}

.recap-total {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem;
    background: var(--primary);
    color: var(--text-main);
    font-weight: 900;
    font-size: 1.125rem;
}

.recap-savings {
    text-align: center;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 2rem;
}

.btn-white {
    display: inline-block;
    background: #fff;
    color: var(--text-main);
    padding: 1rem 2.5rem;
    border-radius: 9999px;
    font-weight: 900;
    text-decoration: none;
    transition: transform 0.2s;
}

.btn-white:hover {
    transform: scale(1.05);
}

/* Footer */
.footer {
    background: #fff;
    border-top: 1px solid var(--border);
    padding: 3rem 1.5rem;
    text-align: center;
    font-size: 0.75rem;
    color: #9ca3af;
}

.footer .container {
    max-width: 560px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    color: #6b7280;
}

.footer-secure {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    opacity: 0.5;
}

/* Sticky Bar */
.sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    border-top: 1px solid #e5e7eb;
    padding: 0.75rem;
    display: none;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1);
    z-index: 50;
    animation: slideUp 0.3s ease-out;
}

.sticky-bar.show {
    display: flex;
}

@media (min-width: 768px) {
    .sticky-bar {
        display: none !important;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.sticky-price {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.sticky-old {
    font-size: 0.625rem;
    color: #6b7280;
    text-decoration: line-through;
}

.sticky-new {
    font-size: 1.125rem;
    font-weight: 900;
    color: #dc2626;
}

.btn-sticky {
    background: var(--primary);
    color: var(--text-main);
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #bbb;
}

/* Mobile adjustments */
@media (max-width: 640px) {
    h1 {
        font-size: 1.875rem;
    }

    .section {
        padding: 3rem 1rem;
    }

    .btn-hero {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    .gallery-grid {
        gap: 0.75rem;
    }

    body {
        padding-bottom: 70px;
    }
}

/* Footer Disclaimer */
.disclaimer-footer {
    font-size: 0.7rem;
    opacity: 0.6;
    margin-top: 1rem;
    line-height: 1.4;
}

.disclaimer-footer a {
    color: #f9f506;
    text-decoration: underline;
}