* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-light: #f5f3f0;
    --bg-beige: #faf8f5;
    --text-dark: #2c2c2c;
    --text-grey: #6b6b6b;
    --accent-red: #c41e3a;
    --menu-red: #c41e3a;
    --white: #ffffff;
    --black: #000000;
    --footer-dark: #1a1a1a;
    --footer-text: #e0e0e0;
    --shadow-light: rgba(0, 0, 0, 0.1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

main.article-page,
main.article-page * {
    border-left: none !important;
    border-right: none !important;
}

main.article-page article,
main.article-page article * {
    border-left: none !important;
    border-right: none !important;
    box-shadow: none !important;
}

.article-page {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.article-page::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

.disclaimer {
    background-color: var(--bg-beige);
    padding: 12px 20px;
    text-align: center;
    font-size: 13px;
    color: var(--text-grey);
    border-bottom: 1px solid var(--shadow-light);
}

.disclaimer p {
    max-width: 1200px;
    margin: 0 auto;
}

.header {
    background-color: var(--bg-beige);
    padding: 20px 40px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px var(--shadow-light);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    flex: 0 0 auto;
}

.logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    display: block;
}

.site-title {
    flex: 1;
    display: flex;
    justify-content: center;
}

.title-text {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--text-grey);
    text-transform: uppercase;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.title-text a {
    color: var(--text-grey);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.title-text a:hover {
    opacity: 0.7;
}

.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 0 0 auto;
    transition: opacity 0.3s ease;
}

.menu-toggle:hover {
    opacity: 0.7;
}

.menu-line {
    width: 24px;
    height: 2px;
    background-color: var(--text-grey);
    transition: all 0.3s ease;
}

.menu-toggle.active .menu-line:first-child {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active .menu-line:last-child {
    transform: rotate(-45deg) translate(6px, -6px);
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    z-index: 998;
    pointer-events: none;
    transition: background-color 0.3s ease;
}

.menu-overlay.active {
    background-color: rgba(0, 0, 0, 0.3);
    pointer-events: all;
}

.navigation-menu {
    position: fixed;
    top: 0;
    right: -66.666%;
    width: 66.666%;
    height: 100vh;
    background-color: var(--menu-red);
    z-index: 999;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    overflow-x: hidden;
}

.navigation-menu.active {
    right: 0;
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 60px 40px 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-title {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--white);
    text-transform: uppercase;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.menu-close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--white);
    font-size: 32px;
    line-height: 1;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.menu-close:hover {
    opacity: 0.7;
}

.close-icon {
    display: block;
    font-weight: 300;
}

.menu-list {
    list-style: none;
    padding: 60px 60px 40px 60px;
    flex: 1;
}

.menu-item {
    margin-bottom: 50px;
    display: flex;
    align-items: baseline;
    gap: 20px;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.menu-item:hover {
    transform: translateX(15px);
}

.menu-item::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%) scaleX(0);
    width: 4px;
    height: 0;
    background-color: var(--white);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.menu-item:hover::before {
    transform: translateY(-50%) scaleX(1);
    height: 60%;
    opacity: 1;
}

.menu-number {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 400;
    color: var(--white);
    font-family: Georgia, 'Times New Roman', serif;
    line-height: 1;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.7;
}

.menu-item:hover .menu-number {
    opacity: 1;
    transform: scale(1.15);
    color: rgba(255, 255, 255, 1);
}

.menu-link {
    text-decoration: none;
    color: var(--white);
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 400;
    text-transform: uppercase;
    font-family: Georgia, 'Times New Roman', serif;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    line-height: 1.2;
    position: relative;
    transform-origin: left center;
}

.menu-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--white);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-item:hover .menu-link {
    transform: scale(1.05);
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.menu-item:hover .menu-link::after {
    width: 100%;
}

.menu-footer {
    padding: 40px 60px 60px 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-contact {
    color: var(--white);
    font-size: 14px;
    line-height: 1.8;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.contact-line {
    margin: 0;
}

.main-content.blurred {
    filter: blur(8px);
    transition: filter 0.4s ease;
    pointer-events: none;
}

body.menu-open {
    overflow: hidden;
}

.main-content {
    min-height: calc(100vh - 200px);
}

.hero-section {
    padding: 80px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    min-height: 70vh;
}

.hero-text-container {
    flex: 1;
    position: relative;
}

.hero-title {
    font-size: clamp(48px, 8vw, 120px);
    font-weight: 700;
    line-height: 0.9;
    color: var(--accent-red);
    font-family: Georgia, 'Times New Roman', serif;
    margin-bottom: 20px;
}

.hero-line {
    display: block;
}

.hero-line:first-child {
    position: relative;
}

.hero-line:first-child::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 80px;
    height: 3px;
    background-color: var(--accent-red);
}

.hero-decoration {
    width: 60px;
    height: 2px;
    background-color: var(--accent-red);
    margin-top: 30px;
}

.hero-image-container {
    flex: 0 0 45%;
    max-width: 500px;
    position: relative;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    transform: rotate(-5deg) translateX(50px) scale(0.9);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    transition: transform 0.3s ease, opacity 1s ease;
    opacity: 0;
}

.hero-image.animate {
    opacity: 1;
    transform: rotate(-5deg) translateX(0) scale(1);
    animation: float 6s ease-in-out infinite;
}

.hero-image.animate:hover {
    transform: rotate(-3deg) scale(1.02);
    animation-play-state: paused;
}

@keyframes float {
    0%, 100% {
        transform: rotate(-5deg) translateY(0px);
    }
    50% {
        transform: rotate(-5deg) translateY(-15px);
    }
}

.words-section {
    padding: 100px 40px;
    max-width: 1400px;
    margin: 0 auto;
    background-color: var(--bg-light);
}

.words-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 80px;
    min-height: 60vh;
}

.words-left {
    flex: 0 0 40%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.word-item {
    font-size: clamp(64px, 10vw, 140px);
    font-weight: 700;
    line-height: 0.9;
    text-transform: uppercase;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    letter-spacing: -2px;
    margin: 0;
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.word-item.animate {
    opacity: 1;
    transform: translateX(0);
}

.word-item:hover {
    transform: translateX(10px);
}

.word-item:nth-child(1) {
    transition-delay: 0.1s;
}

.word-item:nth-child(2) {
    transition-delay: 0.3s;
}

.word-item:nth-child(3) {
    transition-delay: 0.5s;
}

.word-item.animate:hover {
    transform: translateX(10px);
}

.word-filled {
    color: var(--text-dark);
}

.word-outline {
    color: transparent;
    -webkit-text-stroke: 3px var(--text-dark);
}

.words-right {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    gap: 60px;
    padding-top: 40px;
}

.words-text-block {
    display: flex;
    flex-direction: column;
    gap: 20px;
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.words-text-block.animate {
    opacity: 1;
    transform: translateX(0);
}

.words-text-block:nth-of-type(1) {
    transition-delay: 0.2s;
}

.words-text-block:nth-of-type(2) {
    transition-delay: 0.4s;
}

.words-quote {
    font-size: clamp(16px, 1.5vw, 20px);
    line-height: 1.6;
    color: var(--text-grey);
    font-family: 'Courier New', Courier, monospace;
    margin: 0;
    font-weight: 400;
}

.words-quote::before {
    content: '"';
    font-size: 1.2em;
}

.words-quote::after {
    content: '"';
    font-size: 1.2em;
}

.words-author {
    font-size: clamp(14px, 1.2vw, 16px);
    line-height: 1.5;
    color: var(--text-grey);
    font-family: 'Courier New', Courier, monospace;
    margin: 0;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.words-description {
    font-size: clamp(16px, 1.5vw, 20px);
    line-height: 1.7;
    color: var(--text-grey);
    font-family: 'Courier New', Courier, monospace;
    margin: 0;
    font-weight: 400;
}

.words-link {
    font-size: clamp(14px, 1.2vw, 16px);
    color: var(--text-grey);
    font-family: 'Courier New', Courier, monospace;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: color 0.3s ease;
    display: inline-block;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.words-link:hover {
    color: var(--text-dark);
}

.motivational-section {
    padding: 0;
    margin: 0;
    background-color: transparent;
}

.motivational-content {
    display: flex;
    min-height: 100vh;
    align-items: stretch;
    background-color: transparent;
}

.motivational-text {
    flex: 0 0 40%;
    background-color: var(--black);
    padding: 100px 60px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 40px;
    overflow-y: auto;
    min-height: 100vh;
}

.motivational-paragraph {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.motivational-paragraph.animate {
    opacity: 1;
    transform: translateY(0);
}

.motivational-paragraph:nth-child(1) {
    transition-delay: 0.1s;
}

.motivational-paragraph:nth-child(2) {
    transition-delay: 0.2s;
}

.motivational-paragraph:nth-child(3) {
    transition-delay: 0.3s;
}

.motivational-paragraph:nth-child(4) {
    transition-delay: 0.4s;
}

.motivational-paragraph:nth-child(5) {
    transition-delay: 0.5s;
}

.motivational-paragraph:nth-child(6) {
    transition-delay: 0.6s;
}

.motivational-paragraph:nth-child(7) {
    transition-delay: 0.7s;
}

.motivational-paragraph:nth-child(8) {
    transition-delay: 0.8s;
}

.motivational-paragraph p {
    font-size: clamp(16px, 1.8vw, 22px);
    line-height: 1.8;
    color: var(--white);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 400;
    margin: 0;
    letter-spacing: 0.5px;
}

.motivational-image {
    flex: 0 0 60%;
    position: relative;
    overflow: hidden;
    background-color: transparent;
}

.motivational-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0;
    transform: scale(1.1);
    transition: opacity 1s ease, transform 1s ease;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: high-quality;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: transform, opacity;
    transform-origin: center center;
}

.motivational-img.animate {
    opacity: 1;
    transform: scale(1);
    image-rendering: auto;
}

.mission-section {
    padding: 80px 40px;
    margin: 0;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mission-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 25px;
    position: relative;
    background-color: transparent !important;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
}

.mission-tag {
    align-self: flex-start;
    padding: 10px 20px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    background-color: transparent;
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    position: relative;
}

.mission-tag.animate {
    opacity: 1;
    transform: translateY(0);
}

.mission-tag span {
    font-size: clamp(14px, 1.3vw, 16px);
    color: var(--text-dark);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
    letter-spacing: 0.3px;
    text-transform: none;
}

.mission-text {
    max-width: 600px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
    background-color: transparent !important;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
}

.mission-text.animate {
    opacity: 1;
    transform: translateY(0);
}

.mission-text p {
    font-size: clamp(18px, 1.8vw, 22px);
    line-height: 1.6;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 400;
    margin: 0 !important;
    padding: 0 !important;
    letter-spacing: -0.2px;
    color: #6b6b6b;
    background: var(--mission-gradient, linear-gradient(to bottom, #2c2c2c 0%, #6b6b6b 100%));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    transition: none;
    position: relative;
    z-index: 1;
    display: block;
    overflow: visible;
    will-change: background;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
    isolation: isolate;
}

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: 0 -2px 10px var(--shadow-light);
    padding: 20px;
    z-index: 1001;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    font-size: 14px;
    color: var(--text-dark);
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-accept,
.cookie-decline {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cookie-accept {
    background-color: var(--accent-red);
    color: var(--white);
}

.cookie-accept:hover {
    background-color: #a01a2f;
}

.cookie-decline {
    background-color: transparent;
    color: var(--text-dark);
    border: 1px solid var(--text-grey);
}

.cookie-decline:hover {
    background-color: var(--bg-light);
}

.footer {
    background-color: var(--footer-dark);
    color: var(--footer-text);
    padding: 80px 40px 40px 40px;
    margin-top: 0;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
    gap: 40px;
}

.footer-cta {
    flex: 1;
}

.footer-heading {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 400;
    line-height: 1.3;
    color: var(--white);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    margin: 0;
}

.footer-contact {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-item {
    font-size: 16px;
    line-height: 1.6;
    color: var(--footer-text);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    margin: 0;
}

.footer-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    margin: 40px 0;
}

.footer-disclaimer {
    margin: 30px 0;
    padding: 20px 0;
}

.footer-disclaimer-text {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    margin: 0 0 12px 0;
    max-width: 900px;
}

.footer-disclaimer-text:last-child {
    margin-bottom: 0;
}

.footer-middle {
    margin-bottom: 40px;
}

.footer-nav {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-link {
    font-size: 16px;
    color: var(--footer-text);
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    font-size: 14px;
    color: var(--footer-text);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.footer-copyright p {
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-legal-link {
    font-size: 14px;
    color: var(--footer-text);
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    transition: color 0.3s ease;
}

.footer-legal-link:hover {
    color: var(--white);
}

.legal-page {
    padding: 60px 40px;
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--bg-light);
    min-height: calc(100vh - 300px);
}

.legal-container {
    background-color: var(--white);
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 2px 10px var(--shadow-light);
}

.legal-container h1 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.legal-date {
    font-size: 14px;
    color: var(--text-grey);
    margin-bottom: 40px;
    font-style: italic;
}

.legal-container section {
    margin-bottom: 40px;
}

.legal-container h2 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 30px;
    margin-bottom: 15px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.legal-container h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 20px;
    margin-bottom: 10px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.legal-container p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.legal-container ul {
    margin: 15px 0;
    padding-left: 30px;
}

.legal-container li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.legal-container a {
    color: var(--accent-red);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.legal-container a:hover {
    color: #a01a2f;
}

.contact-page {
    padding: 60px 40px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: var(--bg-light);
    min-height: calc(100vh - 300px);
}

.contact-container {
    background-color: var(--white);
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 2px 10px var(--shadow-light);
}

.contact-header {
    margin-bottom: 50px;
    text-align: center;
}

.contact-header h1 {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.contact-intro {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-grey);
    max-width: 800px;
    margin: 0 auto;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-section h2 {
    font-size: 28px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 25px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-grey);
    margin: 5px 0;
}

.contact-item a {
    color: var(--accent-red);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #a01a2f;
    text-decoration: underline;
}

.contact-form-section {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-red);
}

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

.submit-btn {
    padding: 14px 30px;
    background-color: var(--accent-red);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.submit-btn:hover {
    background-color: #a01a2f;
}

.about-page {
    padding: 60px 40px;
    max-width: 1000px;
    margin: 0 auto;
    background-color: var(--bg-light);
    min-height: calc(100vh - 300px);
}

.about-container {
    background-color: var(--white);
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 2px 10px var(--shadow-light);
}

.about-header {
    margin-bottom: 50px;
    text-align: center;
}

.about-header h1 {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.about-intro {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-grey);
    max-width: 800px;
    margin: 0 auto;
}

.words-carousel-section {
    margin: 60px 0;
    padding: 40px 0;
    background-color: transparent;
    border-radius: 8px;
    overflow: hidden;
}

.words-carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.words-carousel-track {
    display: flex;
    gap: 60px;
    animation: scrollWords 8s linear infinite;
    will-change: transform;
}

.words-carousel-track:hover {
    animation-play-state: paused;
}

.carousel-word {
    flex-shrink: 0;
    font-size: clamp(32px, 5vw, 64px);
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 2px;
    white-space: nowrap;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.carousel-word:hover {
    opacity: 1;
}

@keyframes scrollWords {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.about-section {
    margin-bottom: 50px;
}

.about-section h2 {
    font-size: 32px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.about-section p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.value-item {
    padding: 25px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.value-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.value-item p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-grey);
    margin: 0;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.features-list li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-red);
    font-weight: bold;
}

.contact-details {
    margin-top: 20px;
}

.contact-details p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 10px;
}

@media (max-width: 968px) {
    .header {
        padding: 15px 20px;
    }

    .title-text {
        font-size: 16px;
    }

    .hero-section {
        padding: 60px 20px;
    }

    .hero-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .hero-image-container {
        flex: 1;
        max-width: 100%;
    }

    .hero-title {
        font-size: clamp(36px, 10vw, 80px);
    }

    .words-section {
        padding: 60px 20px;
    }

    .words-content {
        flex-direction: column;
        gap: 50px;
    }

    .words-left {
        flex: 1;
        width: 100%;
    }

    .words-right {
        flex: 1;
        width: 100%;
        padding-top: 0;
    }

    .word-item {
        font-size: clamp(48px, 12vw, 100px);
    }

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

@media (max-width: 640px) {
    .header-container {
        gap: 15px;
    }

    .logo-img {
        width: 32px;
        height: 32px;
    }

    .title-text {
        font-size: 14px;
        letter-spacing: 1px;
    }

    .hero-section {
        padding: 40px 15px;
    }

    .words-section {
        padding: 40px 15px;
    }

    .words-content {
        gap: 40px;
    }

    .word-item {
        font-size: clamp(40px, 15vw, 80px);
    }

    .words-right {
        gap: 40px;
    }

    .footer {
        padding: 60px 20px 30px 20px;
    }

    .footer-top {
        flex-direction: column;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-legal {
        flex-direction: column;
        gap: 15px;
    }

    .footer-disclaimer {
        margin: 20px 0;
        padding: 15px 0;
    }

    .footer-disclaimer-text {
        font-size: 13px;
    }

    .legal-page {
        padding: 40px 20px;
    }

    .legal-container {
        padding: 40px 30px;
    }

    .legal-container h1 {
        font-size: 28px;
    }

    .legal-container h2 {
        font-size: 22px;
    }

    .contact-page {
        padding: 40px 20px;
    }

    .contact-container {
        padding: 40px 30px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-header h1 {
        font-size: 32px;
    }

    .about-page {
        padding: 40px 20px;
    }

    .about-container {
        padding: 40px 30px;
    }

    .about-header h1 {
        font-size: 32px;
    }

    .about-section h2 {
        font-size: 26px;
    }

    .mission-section {
        padding: 60px 30px;
    }

    .mission-content {
        gap: 30px;
    }

    .mission-tag {
        padding: 8px 14px;
    }

    .mission-text {
        max-width: 100%;
    }

    .mission-text p {
        font-size: 16px;
    }

    .words-carousel-section {
        margin: 40px 0;
        padding: 30px 0;
    }

    .words-carousel-track {
        gap: 40px;
    }

    .carousel-word {
        font-size: clamp(24px, 6vw, 48px);
    }

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

    .motivational-content {
        flex-direction: column;
    }

    .motivational-text {
        flex: 1;
        padding: 60px 40px;
        gap: 40px;
    }

    .motivational-image {
        flex: 1;
        min-height: 50vh;
    }

    .motivational-text {
        padding: 50px 30px;
        gap: 30px;
        max-height: none;
    }

    .motivational-paragraph p {
        font-size: clamp(15px, 2vw, 20px);
    }

    .navigation-menu {
        width: 85%;
        right: -85%;
    }

    .menu-header {
        padding: 30px 30px 30px 30px;
    }

    .menu-list {
        padding: 40px 30px 30px 30px;
    }

    .menu-item {
        margin-bottom: 35px;
        gap: 15px;
    }

    .menu-item:hover {
        transform: translateX(10px);
    }

    .menu-item::before {
        left: -20px;
        width: 3px;
    }

    .menu-footer {
        padding: 30px 30px 40px 30px;
    }
}

.articles-page {
    padding: 60px 40px;
    background-color: var(--white);
    min-height: calc(100vh - 300px);
}

.articles-container {
    max-width: 1400px;
    margin: 0 auto;
}

.articles-header {
    margin-bottom: 80px;
}

.articles-title {
    font-size: clamp(64px, 12vw, 120px);
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    letter-spacing: 4px;
    margin: 0 0 20px 0;
}

.articles-divider {
    width: 100%;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.2);
    margin-top: 20px;
}

.articles-list {
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.article-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.article-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.article-item:nth-child(1) {
    transition-delay: 0.1s;
}

.article-item:nth-child(2) {
    transition-delay: 0.3s;
}

.article-item:nth-child(3) {
    transition-delay: 0.5s;
}

.article-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.article-date {
    font-size: 16px;
    color: rgba(0, 0, 0, 0.5);
    font-family: 'Courier New', Courier, monospace;
    margin-bottom: 10px;
}

.article-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.3;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    margin: 0;
    text-transform: capitalize;
}

.article-excerpt {
    font-size: clamp(16px, 1.8vw, 20px);
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.7);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    margin: 0;
}

.article-link {
    font-size: 16px;
    color: var(--text-dark);
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    margin-top: 10px;
    display: inline-block;
    transition: opacity 0.3s ease;
}

.article-link:hover {
    opacity: 0.7;
}

.article-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 8px;
}

.article-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.article-item:hover .article-img {
    transform: scale(1.05);
}

@media (max-width: 968px) {
    .articles-page {
        padding: 40px 20px;
    }

    .articles-header {
        margin-bottom: 60px;
    }

    .articles-title {
        font-size: clamp(48px, 10vw, 80px);
        letter-spacing: 2px;
    }

    .articles-list {
        gap: 60px;
    }

    .article-item {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .article-image {
        order: -1;
        aspect-ratio: 16/9;
    }
}

.article-page {
    padding: 60px 40px;
    background-color: var(--white);
    min-height: calc(100vh - 300px);
    overflow: visible;
    border: none !important;
    border-left: none !important;
    border-right: none !important;
    box-shadow: none !important;
    outline: none !important;
}

.article-full {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 40px;
    overflow: visible;
    border: none !important;
    border-left: none !important;
    border-right: none !important;
    box-shadow: none !important;
    outline: none !important;
}

.article-header {
    margin-bottom: 40px;
}

header.article-header {
    margin-bottom: 40px;
}

.article-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.6);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.article-date-full {
    font-family: 'Courier New', Courier, monospace;
}

.article-category {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.article-title-full {
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.3;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    margin: 0;
    text-transform: capitalize;
}

.article-featured-image {
    width: 100%;
    max-width: 600px;
    margin: 0 auto 50px auto;
    border-radius: 8px;
    overflow: hidden;
}

.article-featured-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.article-content-full {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(0, 0, 0, 0.8);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.article-intro {
    font-size: 20px;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.9);
    margin-bottom: 40px;
    font-weight: 400;
}

.article-content-full h2 {
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 500;
    color: var(--text-dark);
    margin: 50px 0 20px 0;
    line-height: 1.4;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.article-content-full h3 {
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 500;
    color: var(--text-dark);
    margin: 35px 0 15px 0;
    line-height: 1.4;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.article-content-full p {
    margin: 0 0 25px 0;
}

.article-content-full a {
    color: var(--accent-red);
    text-decoration: underline;
    transition: color 0.3s ease, opacity 0.3s ease;
}

.article-content-full a:hover {
    color: #a01a2f;
    opacity: 0.8;
}

.article-content-full a:visited {
    color: #8b1526;
}

.article-navigation {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.article-back-link {
    font-size: 16px;
    color: var(--text-dark);
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    transition: opacity 0.3s ease;
    display: inline-block;
}

.article-back-link:hover {
    opacity: 0.7;
}

.article-content-full {
    position: relative;
    overflow: visible;
    border: none !important;
    border-left: none !important;
    border-right: none !important;
    box-shadow: none !important;
    outline: none !important;
}

.article-block {
    margin: 0;
    padding: 60px 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: sticky;
    top: 0;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    background-color: var(--white);
    z-index: 1;
    border: none !important;
    border-left: none !important;
    border-right: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.article-block:first-of-type {
    margin-top: 0;
}

.article-block:last-of-type {
    margin-bottom: 0;
    padding-bottom: 100px;
}

.article-block.animate {
    opacity: 1;
    transform: translateY(0);
}

.article-block.active {
    z-index: 2;
}

.article-info-box {
    background-color: rgba(0, 0, 0, 0.03);
    padding: 25px;
    margin: 30px 0;
    border-radius: 4px;
}

.article-info-box h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 20px;
    color: var(--text-dark);
}

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

.article-list li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.article-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-red);
    font-size: 20px;
    line-height: 1.2;
}

.article-table-container {
    overflow-x: auto;
    margin: 30px 0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.article-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--white);
    font-size: 16px;
}

.article-table thead {
    background-color: rgba(0, 0, 0, 0.05);
}

.article-table th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
    color: var(--text-dark);
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

.article-table td {
    padding: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    color: rgba(0, 0, 0, 0.8);
}

.article-table tbody tr:hover {
    background-color: rgba(0, 0, 0, 0.02);
}

.article-example-box {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.02) 100%);
    border: 2px dashed rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin: 30px 0;
    border-radius: 8px;
    text-align: center;
}

.article-example-box h3 {
    margin-top: 0;
    margin-bottom: 15px;
}

.curp-example {
    font-family: 'Courier New', Courier, monospace;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--accent-red);
    margin: 15px 0;
    padding: 15px;
    background-color: var(--white);
    border-radius: 4px;
    display: inline-block;
}

.example-explanation {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.6);
    margin-top: 15px;
    margin-bottom: 0;
}

.article-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin: 30px 0;
}

.step-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 25px;
    background-color: rgba(0, 0, 0, 0.02);
    border-radius: 8px;
}

.step-number {
    min-width: 50px;
    height: 50px;
    background-color: var(--accent-red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 600;
    flex-shrink: 0;
}

.step-content h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 20px;
}

.step-content p {
    margin: 0;
    line-height: 1.7;
}

.article-warning-box {
    background-color: rgba(255, 193, 7, 0.1);
    padding: 20px;
    margin: 30px 0;
    border-radius: 4px;
}

.article-warning-box h3 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #856404;
}

.article-warning-box p {
    margin: 0;
    color: #856404;
}

.article-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.feature-card {
    background-color: rgba(0, 0, 0, 0.02);
    padding: 25px;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-card h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 20px;
    color: var(--text-dark);
}

.feature-card p {
    margin: 0;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.8);
}

.article-uses-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.use-category {
    background-color: rgba(0, 0, 0, 0.02);
    padding: 25px;
    border-radius: 8px;
}

.use-category h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 20px;
    color: var(--text-dark);
    border-bottom: 2px solid var(--accent-red);
    padding-bottom: 10px;
}

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

.use-category ul li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    line-height: 1.6;
}

.use-category ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-red);
    font-weight: 600;
}

.article-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.comparison-item {
    background-color: rgba(0, 0, 0, 0.02);
    padding: 25px;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.comparison-item h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 20px;
    color: var(--text-dark);
}

.comparison-item p {
    margin: 0;
    line-height: 1.7;
}

.article-timeline {
    margin: 30px 0;
    position: relative;
    padding-left: 40px;
}

.article-timeline::before {
    content: "";
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--accent-red);
}

.article-timeline h3 {
    margin-top: 0;
    margin-bottom: 25px;
    font-size: 22px;
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
}

.timeline-marker {
    position: absolute;
    left: -32px;
    top: 5px;
    width: 16px;
    height: 16px;
    background-color: var(--accent-red);
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: 0 0 0 2px var(--accent-red);
}

.timeline-content {
    background-color: rgba(0, 0, 0, 0.02);
    padding: 20px;
    border-radius: 8px;
}

.timeline-content h4 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 18px;
    color: var(--text-dark);
}

.timeline-content p {
    margin: 0;
    line-height: 1.7;
}

.article-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.02) 100%);
    border-radius: 8px;
    border: 2px solid rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-red);
    margin-bottom: 10px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.stat-label {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

@media (max-width: 968px) {
    .article-page {
        padding: 40px 20px;
    }

    .article-full {
        padding: 0 20px;
    }

    .article-block {
        padding: 40px 0;
        min-height: auto;
    }

    .article-meta {
        flex-direction: column;
        gap: 10px;
    }

    .article-featured-image {
        margin-bottom: 30px;
    }

    .article-content-full {
        font-size: 16px;
    }

    .article-intro {
        font-size: 18px;
    }

    .article-features-grid {
        grid-template-columns: 1fr;
    }

    .article-uses-list {
        grid-template-columns: 1fr;
    }

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

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

    .article-table-container {
        font-size: 14px;
    }

    .article-table th,
    .article-table td {
        padding: 10px;
    }

    .curp-example {
        font-size: 18px;
        letter-spacing: 2px;
    }

    .step-item {
        flex-direction: column;
        gap: 15px;
    }

    .article-timeline {
        padding-left: 30px;
    }

    .timeline-marker {
        left: -22px;
    }
}

