/* 
 * Style principal pour le site Sécurité Financière
 * Couleur principale : #29ab8f
 * Style moderne et professionnel
 */

/* --- RÉINITIALISATION --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* --- VARIABLES --- */
:root {
    --primary-color: #29ab8f;
    --primary-dark: #218a73;
    --primary-light: #5fc7b0;
    --secondary-color: #2c3e50;
    --accent-color: #f39c12;
    --text-color: #333333;
    --text-light: #666666;
    --text-lighter: #999999;
    --bg-color: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #e9ecef;
    --border-color: #dddddd;
    --success-color: #2ecc71;
    --error-color: #e74c3c;
    --warning-color: #f1c40f;
    --info-color: #3498db;
    --transition-speed: 0.3s;
    --border-radius: 5px;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --container-width: 1200px;
}

/* --- BASE --- */
html {
    font-size: 62.5%; /* 1rem = 10px */
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
}

/* --- CONTAINER --- */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* --- TYPOGRAPHIE --- */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: var(--secondary-color);
}

h1 {
    font-size: 3.6rem;
}

h2 {
    font-size: 3rem;
}

h3 {
    font-size: 2.4rem;
}

h4 {
    font-size: 2rem;
}

h5 {
    font-size: 1.8rem;
}

h6 {
    font-size: 1.6rem;
}

p {
    margin-bottom: 1.5rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-speed);
}

a:hover {
    color: var(--primary-dark);
}

ul, ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

blockquote {
    padding: 1.5rem;
    margin: 2rem 0;
    border-left: 5px solid var(--primary-color);
    background-color: var(--bg-light);
    font-style: italic;
}

blockquote p:last-child {
    margin-bottom: 0;
}

strong {
    font-weight: 600;
}

/* --- BOUTONS --- */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1.6rem;
    font-weight: 500;
    text-align: center;
    text-transform: none;
    border: 1px solid transparent;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all var(--transition-speed);
    background-color: var(--bg-light);
    color: var(--text-color);
}

.btn:hover {
    background-color: var(--bg-dark);
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: white;
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: white;
}

.btn-secondary:hover {
    background-color: #1a2530;
    color: white;
}

.btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(41, 171, 143, 0.3);
}

/* --- HEADER --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 0;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all var(--transition-speed);
}

header.scrolled {
    padding: 1rem 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    max-height: 50px;
    width: auto;
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin-left: 2.5rem;
}

nav ul li a {
    color: var(--text-color);
    font-weight: 500;
    transition: color var(--transition-speed);
    position: relative;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--primary-color);
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width var(--transition-speed);
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--text-color);
    transition: all var(--transition-speed);
}

/* --- MAIN CONTENT --- */
main {
    padding-top: 84px; /* Height of the header */
}

/* --- HERO SECTION --- */
.hero {
    position: relative;
    background-color: var(--secondary-color);
    color: white;
    padding: 15rem 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    margin-top: 84px; /* Height of the header */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.8) 0%, rgba(41, 171, 143, 0.8) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero h1 {
    font-size: 4.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: white;
}

.hero p {
    font-size: 2rem;
    margin-bottom: 3rem;
}

/* --- SECTIONS --- */
section {
    padding: 8rem 0;
}

.section-title {
    font-size: 3.6rem;
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
}

.section-subtitle {
    font-size: 1.8rem;
    text-align: center;
    color: var(--text-light);
    margin-bottom: 5rem;
}

/* --- SERVICES SECTION --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.service-card {
    background-color: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: transform var(--transition-speed);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    margin-bottom: 2rem;
}

.service-icon img {
    width: 60px;
    height: 60px;
}

.service-card h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

/* --- ABOUT SECTION --- */
.about {
    background-color: var(--bg-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-text {
    padding-right: 2rem;
}

.about-features {
    list-style: none;
    padding: 0;
    margin: 3rem 0;
}

.about-features li {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.about-features li img {
    width: 24px;
    height: 24px;
    margin-right: 1.5rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.stat-item {
    background-color: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
}

.stat-number {
    font-size: 4.8rem;
    font-weight: 700;
    line-height: 1;
    color: var(--primary-color);
    display: block;
    margin-bottom: 1rem;
}

.stat-text {
    font-size: 1.8rem;
    color: var(--text-light);
}

/* --- ARTICLES SECTION --- */
.recent-articles {
    padding-top: 8rem;
    padding-bottom: 8rem;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 5rem;
}

.article-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: transform var(--transition-speed);
}

.article-card:hover {
    transform: translateY(-10px);
}

.article-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-speed);
}

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

.article-content {
    padding: 2rem;
}

.article-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.article-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.read-more {
    color: var(--primary-color);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
}

.read-more::after {
    content: '→';
    margin-left: 0.5rem;
    transition: transform var(--transition-speed);
}

.read-more:hover::after {
    transform: translateX(5px);
}

.articles-cta {
    text-align: center;
}

/* --- TESTIMONIALS SECTION --- */
.testimonials {
    background-color: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    max-width: 800px;
}

.testimonial {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.testimonial-content {
    background-color: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 2rem;
    position: relative;
}

.testimonial-content::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background-color: white;
    transform: translateX(-50%) rotate(45deg);
}

.testimonial-content p {
    font-size: 1.8rem;
    font-style: italic;
    margin-bottom: 0;
}

.testimonial-author h4 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.testimonial-author p {
    color: var(--text-light);
    margin-bottom: 0;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--border-color);
    margin: 0 5px;
    cursor: pointer;
    transition: background-color var(--transition-speed);
}

.dot.active {
    background-color: var(--primary-color);
}

/* --- CONTACT SECTION --- */
.contact {
    background-color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 5rem;
}

.contact-info h2 {
    margin-bottom: 2rem;
}

.contact-details {
    margin-top: 3rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.contact-item svg {
    margin-right: 1.5rem;
    margin-top: 0.5rem;
    flex-shrink: 0;
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 3rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--bg-light);
    transition: all var(--transition-speed);
}

.social-links a:hover {
    background-color: var(--primary-color);
}

.social-links a:hover svg {
    color: white;
}

.social-links svg {
    color: var(--primary-color);
    transition: color var(--transition-speed);
}

/* --- SUBSCRIPTION FORM --- */
.subscription-form {
    background-color: var(--bg-light);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.subscription-form h2 {
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 1.2rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1.6rem;
    transition: border-color var(--transition-speed);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group.checkbox {
    display: flex;
    align-items: flex-start;
}

.form-group.checkbox input {
    width: auto;
    margin-right: 1rem;
    margin-top: 0.3rem;
}

.error-message {
    color: var(--error-color);
    font-size: 1.4rem;
    margin-top: 0.5rem;
    display: none;
}

/* --- BLOG PAGE --- */
.blog-banner {
    background-color: var(--secondary-color);
    color: white;
    padding: 10rem 0;
    text-align: center;
    margin-top: 84px; /* Height of the header */
}

.blog-banner h1 {
    font-size: 4.2rem;
    color: white;
    margin-bottom: 1rem;
}

.blog-banner p {
    font-size: 1.8rem;
    max-width: 700px;
    margin: 0 auto;
}

.articles-filter {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.articles-filter span {
    margin-right: 1.5rem;
    font-weight: 500;
}

.filter-buttons {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.filter-buttons li {
    margin: 0.5rem;
}

.filter-buttons button {
    padding: 0.8rem 1.5rem;
    background-color: var(--bg-light);
    border: none;
    border-radius: var(--border-radius);
    font-size: 1.6rem;
    cursor: pointer;
    transition: all var(--transition-speed);
}

.filter-buttons button:hover,
.filter-buttons button.active {
    background-color: var(--primary-color);
    color: white;
}

.blog-articles .article-card {
    display: flex;
    flex-direction: column;
}

.blog-articles .article-image {
    height: 220px;
}

.blog-articles .article-meta {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.blog-articles .category {
    background-color: var(--primary-light);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    margin-right: 1.5rem;
}

.blog-articles .date {
    color: var(--text-lighter);
}

.blog-subscribe {
    background-color: var(--primary-color);
    color: white;
    padding: 6rem 0;
}

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

.blog-subscribe h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.blog-subscribe p {
    margin-bottom: 3rem;
}

.blog-subscribe .form-group {
    max-width: 500px;
    margin: 0 auto 2rem;
}

.blog-subscribe input {
    width: 100%;
    padding: 1.5rem;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1.6rem;
}

/* --- SINGLE ARTICLE PAGE --- */
.single-article {
    margin-top: 84px; /* Height of the header */
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.article-header {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.article-header h1 {
    font-size: 4rem;
    margin-bottom: 2rem;
}

.article-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.article-meta .category {
    background-color: var(--primary-light);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    margin-right: 1.5rem;
}

.article-meta .date,
.article-meta .author {
    color: var(--text-lighter);
    margin-right: 1.5rem;
}

.article-featured-image {
    max-width: 900px;
    margin: 0 auto 5rem;
    overflow: hidden;
    border-radius: var(--border-radius);
}

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

.article-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.8rem;
    line-height: 1.8;
}

.article-content h2 {
    font-size: 3rem;
    margin-top: 4rem;
    margin-bottom: 2rem;
}

.article-content h3 {
    font-size: 2.4rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.article-content ul,
.article-content ol {
    margin-bottom: 2.5rem;
}

.article-content li {
    margin-bottom: 1rem;
}

.article-quote {
    margin: 4rem 0;
    padding: 0 2rem;
    border-left: 5px solid var(--primary-color);
}

.article-quote blockquote {
    font-size: 2.2rem;
    line-height: 1.6;
    font-style: italic;
    border: none;
    padding: 0;
    margin: 0 0 1.5rem;
    background-color: transparent;
}

.article-quote cite {
    font-size: 1.6rem;
    font-style: normal;
    color: var(--text-light);
    display: block;
}

.article-callout {
    background-color: var(--bg-light);
    padding: 3rem;
    border-radius: var(--border-radius);
    margin: 3rem 0;
}

.article-callout h3 {
    margin-top: 0;
    color: var(--primary-color);
}

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

.article-share {
    max-width: 800px;
    margin: 5rem auto;
    display: flex;
    align-items: center;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 2rem 0;
}

.article-share span {
    font-weight: 500;
    margin-right: 1.5rem;
}

.article-author {
    max-width: 800px;
    margin: 5rem auto;
    display: flex;
    align-items: center;
    background-color: var(--bg-light);
    padding: 3rem;
    border-radius: var(--border-radius);
}

.author-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 2.5rem;
    background-color: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.author-image svg {
    width: 50px;
    height: 50px;
}

.author-bio h3 {
    margin-top: 0;
    margin-bottom: 1rem;
}

.author-bio p {
    margin-bottom: 0;
    color: var(--text-light);
}

.article-related {
    max-width: 800px;
    margin: 5rem auto;
}

.article-related h3 {
    text-align: center;
    margin-bottom: 3rem;
}

.related-articles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
}

.related-article {
    display: block;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: transform var(--transition-speed);
}

.related-article:hover {
    transform: translateY(-10px);
}

.related-article img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.related-article h4 {
    padding: 1.5rem;
    font-size: 1.6rem;
    margin-bottom: 0;
}

/* --- THANK YOU PAGE --- */
.thank-you {
    margin-top: 84px; /* Height of the header */
    padding: 10rem 0;
    text-align: center;
}

.thank-you-content {
    max-width: 700px;
    margin: 0 auto;
}

.thank-you-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 3rem;
}

.thank-you-icon svg {
    width: 100%;
    height: 100%;
}

.thank-you h1 {
    margin-bottom: 2rem;
}

.thank-you p {
    font-size: 1.8rem;
    margin-bottom: 4rem;
}

.thank-you-next {
    background-color: var(--bg-light);
    padding: 3rem;
    border-radius: var(--border-radius);
    text-align: left;
    margin-bottom: 4rem;
}

.thank-you-next h2 {
    margin-bottom: 2rem;
    font-size: 2.4rem;
}

.thank-you-next ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.thank-you-next li {
    display: flex;
    margin-bottom: 2rem;
}

.thank-you-next li:last-child {
    margin-bottom: 0;
}

.thank-you-next svg {
    width: 24px;
    height: 24px;
    margin-right: 1.5rem;
    flex-shrink: 0;
    color: var(--primary-color);
}

/* --- LEGAL PAGES --- */
.legal-page {
    margin-top: 84px; /* Height of the header */
    padding: 5rem 0;
}

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

.legal-content h1 {
    margin-bottom: 1rem;
}

.last-updated {
    color: var(--text-lighter);
    margin-bottom: 4rem;
    font-style: italic;
}

.legal-section {
    margin-bottom: 4rem;
}

.legal-section h2 {
    font-size: 2.4rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
}

.legal-section h3 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookie-table th,
.cookie-table td {
    padding: 1.2rem 1.5rem;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookie-table th {
    background-color: var(--bg-light);
    font-weight: 500;
}

/* --- FOOTER --- */
footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 5rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 5rem;
    margin-bottom: 4rem;
}

.footer-logo img {
    max-height: 50px;
    margin-bottom: 2rem;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.8);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.footer-column h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background-color: var(--primary-color);
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 1rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: color var(--transition-speed);
}

.footer-column ul li a:hover,
.footer-column ul li a.active {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 1.4rem;
}

/* --- RESPONSIVE STYLES --- */
@media (max-width: 1024px) {
    html {
        font-size: 60%;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 58%;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: white;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right var(--transition-speed);
        z-index: 1000;
        padding: 10rem 2rem 2rem;
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
    }

    nav ul li {
        margin-left: 0;
        margin-bottom: 2rem;
    }

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

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

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

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

    .hero {
        padding: 10rem 0;
    }

    .hero h1 {
        font-size: 3.6rem;
    }

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

    .footer-links {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .article-header h1 {
        font-size: 3rem;
    }

    .article-content {
        font-size: 1.6rem;
    }

    .article-quote blockquote {
        font-size: 1.8rem;
    }

    .article-author {
        flex-direction: column;
        text-align: center;
    }

    .author-image {
        margin-right: 0;
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 55%;
    }

    .hero h1 {
        font-size: 3.2rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .testimonial-content {
        padding: 2rem;
    }

    .article-meta {
        flex-direction: column;
    }

    .article-meta > * {
        margin-bottom: 1rem;
    }

    .article-meta .category {
        margin-right: 0;
    }

    .article-meta .date {
        margin-right: 0;
    }

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

    .article-share span {
        margin-right: 0;
        margin-bottom: 1.5rem;
    }
}
