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

body {
    font-family: 'Hind', Arial, sans-serif;
    color: #000;
    background: #fff;
}

/* Header */
header {
    padding: 20px 80px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: transparent;
    transition: all 0.4s ease;
}

header.scrolled {
    background: #000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    padding: 15px 80px;
}

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

.logo img {
    height: 80px;
    width: auto;
    transition: height 0.4s ease;
}

header.scrolled .logo img {
    height: 50px;
    filter: brightness(100%) invert(1);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #000;
    transition: all 0.3s ease;
}

header.scrolled .mobile-menu-toggle span {
    background: #fff;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.menu > li {
    position: relative;
}

.menu > li > a {
    color: #000;
    text-decoration: none;
    font-size: 12px;
    transition: all 0.3s ease;
    padding: 10px 0;
    display: block;
    text-transform: uppercase;
    letter-spacing: 3px;
}

header.scrolled .menu > li > a {
    color: #fff;
}

header.scrolled .menu > li > a:hover {
    color: #ccc;
}

.menu > li > a:hover {
    color: #666;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 280px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    padding: 20px 0;
    margin-top: 10px;
}

.menu > li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li {
    list-style: none;
}

.dropdown li a {
    color: #000;
    text-decoration: none;
    padding: 12px 30px;
    display: block;
    font-size: 15px;
    transition: background 0.2s ease;
    text-transform: none;
    letter-spacing: normal;
}

.dropdown li a:hover {
    background: #f8f8f8;
}

.sub-dropdown {
    position: absolute;
    left: 100%;
    top: 0;
    background: #fff;
    min-width: 250px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px 0;
}

.dropdown li:hover .sub-dropdown {
    opacity: 1;
    visibility: visible;
}

/* Hero Section */
.hero-section {
    height: 600px;
    margin-top: 90px;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 1s ease;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
}

.hero-title {
    font-size: 80px;
    font-weight: 700;
    color: #000;
    margin: 0;
    line-height: 1.2;
    text-align: center;
}

.hero-title.animate-out .letter {
    animation: letterUp 0.8s ease forwards;
}

.hero-title.animate-in .letter {
    animation: letterIn 1s ease forwards;
}

.letter {
    display: inline-block;
    opacity: 0;
}

@keyframes letterUp {
    0% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
    100% {
        opacity: 0;
        transform: translateY(-120px) scale(1.5);
        filter: blur(8px);
    }
}

@keyframes letterIn {
    0% {
        opacity: 0;
        transform: translateY(-300px) scale(1.75);
        filter: blur(8px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

.hero-subtitle {
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 10px;
    color: #2d3032;
    margin-top: 30px;
    opacity: 0;
    transition: opacity 0.8s ease 0.3s;
}

.hero-slide.active .hero-subtitle {
    opacity: 1;
}

.hero-button {
    margin-top: 60px;
    padding: 15px 35px;
    background: #c7c7cc;
    color: #2d3032;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(-20px);
}


.hero-slide.active .hero-button {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease 0.5s;
}

.hero-button:hover {
    background: #2d3032;
    color: #fff;
}

.hero-arrows {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    z-index: 10;
    pointer-events: none;
}

.hero-arrow {
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #000;
    pointer-events: all;
}

.hero-arrow:hover {
    background: rgba(0, 0, 0, 0.2);
}

.hero-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 18px;
    z-index: 10;
}

.particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 600px !important;
    z-index: 0;
}

.hero-dot {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: background 0.3s ease;
    position: relative;
}

.hero-dot.active {
    background: #000;
}

.hero-dot:hover::after {
    content: attr(data-title);
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    background: #000;
    color: #fff;
    padding: 5px 10px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 3px;
}

/* Risk Management Section */
.risk-management-section {
    padding: 120px 80px;
    background: #fff;
}

.risk-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.risk-text {
    padding-right: 40px;
}

.risk-title {
    font-size: 32px;
    font-weight: 500;
    color: #000;
    margin-bottom: 40px;
    letter-spacing: 5px;
    max-width: 400px;
    line-height: 1.2;
}

.risk-description {
    margin-bottom: 50px;
}

.risk-description p {
    font-size: 16px;
    line-height: 1.8;
    color: #2d3032;
    margin-bottom: 20px;
    text-align: justify;
}

.risk-button {
    display: inline-block;
    padding: 18px 45px;
    background: #000;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.risk-button:hover {
    background: #2d3032;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.risk-image {
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.risk-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.risk-image:hover img {
    transform: scale(1.05);
}

/* Footer */
.footer {
    background: #f6f6f6;
    padding: 80px 40px 40px;
    color: #fff;
}

.footer-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

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

.footer-logo img {
    height: 60px;
    width: auto;
    opacity: 0.5;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-social a {
    color: #7d7d7d;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-social a:hover {
    color: #000000;
    transform: translateY(-3px);
}

.footer-legal {
    font-size: 13px;
    color: #999;
}

.footer-legal p {
    margin-bottom: 10px;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #000;
}

.footer-links span {
    color: #666;
}

/* Tablet */
@media (max-width: 1024px) {
    header {
        padding: 20px 40px;
    }

    .menu {
        gap: 25px;
    }

    .risk-management-section {
        padding: 80px 40px;
    }

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

    .risk-text {
        padding-right: 0;
    }

    .risk-image {
        height: 450px;
    }
}
/* Mobile */
@media (max-width: 768px) {
    header {
        padding: 15px 20px;
    }

    header.scrolled {
        padding: 15px 20px;
    }

    .logo img {
        height: 50px;
    }

    header.scrolled .logo img {
        height: 40px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    /* Disable hover on mobile */
    .menu > li:hover .dropdown {
        opacity: 0;
        visibility: hidden;
    }

    .dropdown li:hover .sub-dropdown {
        opacity: 0;
        visibility: hidden;
    }

    .menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 300px;
        height: 100vh;
        background: #000;
        flex-direction: column;
        padding: 80px 0 30px;
        gap: 0;
        transition: right 0.4s ease;
        overflow-y: auto;
        align-items: flex-start;
        z-index: 1000;
    }

    .menu.active {
        right: 0;
    }

    .menu > li {
        width: 100%;
        border-bottom: 1px solid #333;
    }

    .menu > li > a {
        color: #fff;
        padding: 20px 30px;
        font-size: 14px;
        width: 100%;
    }

    .has-dropdown > a::after {
        content: '›';
        float: right;
        font-size: 20px;
    }

    .dropdown {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 300px;
        height: 100vh;
        background: #111;
        padding: 0;
        margin: 0;
        transform: none;
        transition: right 0.4s ease;
        overflow-y: auto;
        z-index: 1001;
    }

    .dropdown.active {
        right: 0;
        opacity: 1;
        visibility: visible;
    }

    .dropdown-back {
        color: #fff;
        font-size: 16px;
        cursor: pointer;
        padding: 20px 30px;
        border-bottom: 1px solid #222;
        position: sticky;
        top: 0;
        background: #111;
        z-index: 10;
    }

    .dropdown li {
        border-bottom: 1px solid #222;
    }

    .dropdown li a {
        color: #fff;
        padding: 20px 30px;
    }

    .dropdown li a:hover {
        background: transparent;
        color: #ccc;
    }

    .has-subdropdown > a::after {
        content: '›';
        float: right;
        font-size: 20px;
    }

    .sub-dropdown {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 300px;
        height: 100vh;
        background: #1a1a1a;
        padding: 0;
        transform: none;
        transition: right 0.4s ease;
        overflow-y: auto;
        z-index: 1002;
    }

    .sub-dropdown.active {
        right: 0;
        opacity: 1;
        visibility: visible;
    }

    .subdropdown-back {
        color: #fff;
        font-size: 16px;
        cursor: pointer;
        padding: 20px 30px;
        border-bottom: 1px solid #222;
        position: sticky;
        top: 0;
        background: #1a1a1a;
        z-index: 10;
    }

    .hero-section {
        margin-top: 70px;
        height: 500px;
    }

    .particles-canvas {
        height: 500px !important;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 12px;
        letter-spacing: 5px;
    }

    .hero-button {
        font-size: 12px;
        padding: 12px 25px;
        margin-top: 40px;
    }

    .hero-arrows {
        padding: 0 20px;
    }

    .hero-arrow {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .hero-dots {
        bottom: 20px;
        gap: 12px;
    }

    .hero-dot {
        width: 10px;
        height: 10px;
    }

    .hero-dot:hover::after {
        display: none;
    }

    .risk-management-section {
        padding: 60px 20px;
    }

    .risk-title {
        font-size: 28px;
        letter-spacing: 3px;
        max-width: 100%;
    }

    .risk-description p {
        font-size: 15px;
        text-align: left;
    }

    .risk-image {
        height: 300px;
    }

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

    .footer-logo img {
        height: 50px;
    }

    .footer-social {
        gap: 20px;
    }

    .footer-legal {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }

    .risk-title {
        font-size: 24px;
    }

    .risk-description p {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .menu > li:hover .dropdown {
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
    }

    .dropdown li:hover .sub-dropdown {
        opacity: 0;
        visibility: hidden;
    }
}

/* ADD THIS TO YOUR CSS - MOBILE MENU STYLES */

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    transition: right 0s 0.4s;
}

.mobile-menu-overlay.active {
    right: 0;
    transition: right 0s 0s;
}

.mobile-menu-container {
    position: absolute;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background: #000;
    overflow-y: auto;
    transition: right 0.4s ease;
}

.mobile-menu-overlay.active .mobile-menu-container {
    right: 0;
}

.mobile-menu-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.mobile-menu-list {
    list-style: none;
    padding: 80px 0 30px;
    margin: 0;
}

.mobile-menu-list > li {
    border-bottom: 1px solid #333;
}

.mobile-menu-list > li > a {
    display: block;
    padding: 20px 30px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.mobile-dropdown-trigger::after,
.mobile-subdropdown-trigger::after {
    content: '›';
    float: right;
    font-size: 20px;
}

.mobile-dropdown-panel,
.mobile-subdropdown-panel {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background: #111;
    overflow-y: auto;
    transition: right 0.4s ease;
    z-index: 1;
}

.mobile-dropdown-panel.active {
    right: 0;
}

.mobile-subdropdown-panel {
    background: #1a1a1a;
}

.mobile-subdropdown-panel.active {
    right: 0;
}

.mobile-dropdown-back,
.mobile-subdropdown-back {
    padding: 20px 30px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    border-bottom: 1px solid #222;
    position: sticky;
    top: 0;
    background: inherit;
    z-index: 10;
}

.mobile-dropdown-panel ul,
.mobile-subdropdown-panel ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-dropdown-panel li,
.mobile-subdropdown-panel li {
    border-bottom: 1px solid #222;
}

.mobile-dropdown-panel li a,
.mobile-subdropdown-panel li a {
    display: block;
    padding: 20px 30px;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
}

@media (max-width: 768px) {
    .mobile-menu-overlay {
        display: block;
    }
}

/* ARTICLE PAGE STYLES - Medium-inspired */

.article-container {
    max-width: 740px;
    margin: 150px auto 80px;
    padding: 0 40px;
}

/* Article Header */
.article-header {
    margin-bottom: 60px;
}

.article-badges {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.article-badge {
    display: inline-block;
    padding: 6px 14px;
    font-family: 'Hind', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 3px;
}

.article-badge.hot {
    background: #ff4444;
    color: #fff;
}

.article-badge.new {
    background: #000;
    color: #fff;
}

.article-title {
    font-family: 'Hind', sans-serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.25;
    color: #000;
    margin: 0 0 30px 0;
    letter-spacing: -0.5px;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    color: #666;
    padding-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
}

.article-date {
    font-weight: 600;
}

.article-author::before {
    content: "✍ ";
    margin-right: 5px;
}

.article-category {
    padding: 5px 12px;
    background: #f0f0f0;
    border-radius: 3px;
    color: #000;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-reading-time::before {
    content: "⏱ ";
    margin-right: 5px;
}

/* Article Content */
.article-content {
    font-family: 'Lora', Georgia, serif;
    font-size: 21px;
    line-height: 1.8;
    color: #292929;
    margin-bottom: 60px;
}

.article-lead {
    font-size: 24px;
    line-height: 1.6;
    color: #000;
    font-weight: 500;
    margin-bottom: 40px;
    padding-left: 30px;
    border-left: 4px solid #000;
}

.article-content h2 {
    font-family: 'Hind', sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    color: #000;
    margin: 50px 0 25px 0;
    letter-spacing: -0.5px;
}

.article-content h3 {
    font-family: 'Hind', sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.4;
    color: #000;
    margin: 40px 0 20px 0;
}

.article-content p {
    margin-bottom: 32px;
}

.article-content strong {
    font-weight: 600;
    color: #000;
}

.article-content a {
    color: #000;
    text-decoration: underline;
    text-decoration-color: rgba(0, 0, 0, 0.3);
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: all 0.3s ease;
}

.article-content a:hover {
    text-decoration-color: rgba(0, 0, 0, 0.8);
}

/* Quote Styling */
.article-quote {
    font-family: 'Lora', Georgia, serif;
    font-size: 24px;
    font-style: italic;
    line-height: 1.6;
    color: #000;
    margin: 50px 0;
    padding: 30px 40px;
    border-left: 5px solid #b8b8b8;
    background: #fafafa;
    position: relative;
}

.article-quote::before {
    content: '"';
    font-size: 80px;
    position: absolute;
    top: -10px;
    left: 10px;
    color: #e0e0e0;
    font-family: Georgia, serif;
}

/* Highlight Box */
.article-highlight {
    background: #fffbea;
    border-left: 5px solid #ffc107;
    padding: 30px 35px;
    margin: 50px 0;
    border-radius: 0 3px 3px 0;
}

.article-highlight h3 {
    font-family: 'Hind', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin: 0 0 15px 0;
}

.article-highlight p {
    font-size: 19px;
    line-height: 1.7;
    margin: 0;
}

/* Result Box */
.article-result {
    background: #e8f5e9;
    border-left: 5px solid #4caf50;
    padding: 30px 35px;
    margin: 50px 0;
    border-radius: 0 3px 3px 0;
}

.article-result h3 {
    font-family: 'Hind', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin: 0 0 15px 0;
}

.article-result p {
    font-size: 19px;
    line-height: 1.7;
    margin: 0;
}

/* Contact Box */
.article-contact {
    background: #f5f5f5;
    padding: 35px;
    margin: 50px 0;
    border-radius: 3px;
    text-align: center;
}

.article-contact p {
    font-size: 18px;
    margin-bottom: 15px;
}

.article-contact p:last-child {
    margin-bottom: 0;
}

/* Share Section */
.article-share {
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    padding: 40px 0;
    margin-bottom: 40px;
}

.article-share h3 {
    font-family: 'Hind', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #000;
    margin-bottom: 25px;
    text-align: center;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.share-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    color: #000;
    text-decoration: none;
    font-family: 'Hind', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.share-btn.linkedin {
    border-color: #0077b5;
    color: #0077b5;
}

.share-btn.linkedin:hover {
    background: #0077b5;
    color: #fff;
}

.share-btn.twitter {
    border-color: #000;
    color: #000;
}

.share-btn.twitter:hover {
    background: #000;
    color: #fff;
}

.share-btn.facebook {
    border-color: #1877f2;
    color: #1877f2;
}

.share-btn.facebook:hover {
    background: #1877f2;
    color: #fff;
}

.share-btn.whatsapp {
    border-color: #25d366;
    color: #25d366;
}

.share-btn.whatsapp:hover {
    background: #25d366;
    color: #fff;
}

.share-btn.copy-link {
    border-color: #666;
    color: #666;
}

.share-btn.copy-link:hover {
    background: #666;
    color: #fff;
}

.copy-success {
    text-align: center;
    margin-top: 15px;
    font-family: 'Hind', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #4caf50;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.copy-success.show {
    opacity: 1;
}

/* Back to Blog */
.back-to-blog {
    text-align: center;
}

.back-link {
    display: inline-flex;
    align-items: center;
    font-family: 'Hind', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #000;
    text-decoration: none;
    transition: all 0.3s ease;
}

.back-link:hover {
    color: #b8b8b8;
    transform: translateX(-5px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .article-container {
        margin: 130px auto 60px;
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    .article-container {
        margin: 110px auto 50px;
        padding: 0 20px;
    }

    .article-title {
        font-size: 32px;
    }

    .article-meta {
        font-size: 13px;
        gap: 15px;
    }

    .article-content {
        font-size: 19px;
    }

    .article-lead {
        font-size: 21px;
        padding-left: 20px;
        border-left-width: 3px;
    }

    .article-content h2 {
        font-size: 28px;
        margin: 40px 0 20px 0;
    }

    .article-content h3 {
        font-size: 22px;
    }

    .article-quote {
        font-size: 21px;
        padding: 25px 30px;
        margin: 40px 0;
    }

    .article-quote::before {
        font-size: 60px;
    }

    .article-highlight,
    .article-result {
        padding: 25px 25px;
        margin: 40px 0;
    }

    .article-highlight p,
    .article-result p {
        font-size: 17px;
    }

    .article-contact {
        padding: 30px 25px;
    }

    .article-contact p {
        font-size: 16px;
    }

    .share-buttons {
        gap: 10px;
    }

    .share-btn {
        padding: 10px 18px;
        font-size: 13px;
        gap: 6px;
    }

    .share-btn svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .article-container {
        padding: 0 15px;
    }

    .article-title {
        font-size: 28px;
    }

    .article-badges {
        gap: 8px;
    }

    .article-badge {
        padding: 5px 12px;
        font-size: 9px;
    }

    .article-meta {
        font-size: 12px;
        gap: 12px;
    }

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

    .article-lead {
        font-size: 20px;
        padding-left: 15px;
    }

    .article-content h2 {
        font-size: 24px;
    }

    .article-content h3 {
        font-size: 20px;
    }

    .article-quote {
        font-size: 19px;
        padding: 20px 20px;
    }

    .article-highlight,
    .article-result {
        padding: 20px 20px;
    }

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

    .share-btn {
        width: 100%;
        justify-content: center;
    }
}