/* ===========================
   InCaso Stia - Main Styles
   Italian Handcrafted Theme
   =========================== */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: #3d2914;
    background-color: #fefcf8;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Georgia', 'Times New Roman', serif;
    color: #2c1810;
    margin-bottom: 0.5em;
    font-weight: 600;
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    line-height: 1.3;
}

h3 {
    font-size: 1.5rem;
    line-height: 1.4;
}

h4 {
    font-size: 1.25rem;
}

h5 {
    font-size: 1.1rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: 1em;
    color: #4a3424;
}

.lead {
    font-size: 1.2rem;
    font-weight: 400;
    color: #3d2914;
    margin-bottom: 1.5em;
}

/* Links */
a {
    color: #b8860b;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #8b6914;
    text-decoration: underline;
}

/* Layout Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hidden {
    display: none;
}

/* Color Palette */
:root {
    --primary-color: #b8860b;
    --primary-dark: #8b6914;
    --secondary-color: #d2691e;
    --accent-color: #cd853f;
    --text-dark: #2c1810;
    --text-medium: #3d2914;
    --text-light: #4a3424;
    --background-light: #fefcf8;
    --background-cream: #f9f7f3;
    --border-light: #e8e1d6;
    --shadow-light: rgba(45, 24, 16, 0.1);
    --shadow-medium: rgba(45, 24, 16, 0.2);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px var(--shadow-light);
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px var(--shadow-medium);
}

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

.btn-secondary:hover {
    background-color: #c04000;
    color: white;
    text-decoration: none;
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: white;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -4px 20px var(--shadow-medium);
}

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

.cookie-content p{
    color: white;
}

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

.cookie-buttons .btn {
    padding: 8px 16px;
    font-size: 0.9rem;
}

/* Navigation */
.navbar {
    background-color: var(--background-light);
    border-bottom: 2px solid var(--border-light);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px var(--shadow-light);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo .logo {
    width: 40px;
    height: 40px;
}

.site-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

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

.nav-link {
    color: var(--text-medium);
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
    background-color: rgba(184, 134, 11, 0.1);
    text-decoration: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--background-cream) 0%, var(--background-light) 100%);
    padding: 80px 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 500;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-image {
    width: 100%;
    height: auto;
    max-width: 500px;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
}

.legal-date {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}

/* Sections */
section {
    padding: 60px 0;
}

section:nth-child(even) {
    background-color: var(--background-cream);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.feature-card {
    background-color: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px var(--shadow-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-light);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--shadow-medium);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 25px;
}

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

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Content Sections */
.content-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.content-section.reverse {
    direction: rtl;
}

.content-section.reverse > * {
    direction: ltr;
}

.content-text h2 {
    color: var(--text-dark);
    margin-bottom: 25px;
    font-size: 2.2rem;
}

.content-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.section-image {
    width: 100%;
    height: auto;
    max-width: 400px;
    margin: 0 auto;
    display: block;
}

/* Mission List */
.mission-list {
    list-style: none;
    margin-top: 20px;
}

.mission-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-light);
    font-size: 1.1rem;
}

.mission-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.team-member {
    background-color: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px var(--shadow-light);
    border: 1px solid var(--border-light);
}

.team-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 25px;
    border-radius: 50%;
    border: 4px solid var(--primary-color);
    padding: 20px;
}

.team-member h3 {
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 1.4rem;
}

.team-role {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.team-member p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    background-color: white;
    padding: 30px 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 15px var(--shadow-light);
    border: 1px solid var(--border-light);
}

.value-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.value-card h3 {
    color: var(--text-dark);
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.value-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.service-card {
    background-color: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px var(--shadow-light);
    border: 1px solid var(--border-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px var(--shadow-medium);
}

.service-card.featured {
    border: 2px solid var(--primary-color);
    position: relative;
}

.service-card.featured::before {
    content: "Più Richiesto";
    position: absolute;
    top: -10px;
    left: 30px;
    background-color: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 25px;
}

.service-card h3 {
    color: var(--text-dark);
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.service-details {
    background-color: var(--background-cream);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.service-details p {
    margin-bottom: 5px;
    color: var(--text-medium);
}

.service-description {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
}

.service-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-light);
}

.service-features li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.service-price {
    background-color: var(--primary-color);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 20px;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background-color: white;
    padding: 35px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px var(--shadow-light);
    border: 1px solid var(--border-light);
    position: relative;
}

.testimonial-card.featured {
    grid-column: span 2;
    padding: 50px 40px;
    border: 2px solid var(--primary-color);
}

.testimonial-content {
    text-align: center;
}

.testimonial-icon,
.course-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.testimonial-card blockquote {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 25px;
    position: relative;
}

.testimonial-card blockquote::before {
    content: """;
    font-size: 4rem;
    color: var(--primary-color);
    position: absolute;
    top: -20px;
    left: -10px;
    line-height: 1;
}

.testimonial-author {
    text-align: center;
}

.testimonial-author strong {
    color: var(--text-dark);
    font-size: 1.1rem;
    display: block;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.testimonial-rating {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 15px;
    text-align: center;
}

/* Statistics */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px var(--shadow-light);
    border: 1px solid var(--border-light);
}

.stat-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 500;
}

/* Blog Articles */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.article-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow-light);
    border: 1px solid var(--border-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px var(--shadow-medium);
}

.article-card.featured {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.article-image {
    padding: 30px;
    background-color: var(--background-cream);
    display: flex;
    align-items: center;
    justify-content: center;
}

.article-img {
    width: 100%;
    height: auto;
    max-width: 200px;
}

.article-content {
    padding: 30px;
}

.article-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.article-date {
    color: var(--text-light);
}

.article-category {
    background-color: var(--primary-color);
    color: white;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
}

.article-card h2,
.article-card h3 {
    margin-bottom: 15px;
}

.article-card h2 a,
.article-card h3 a {
    color: var(--text-dark);
    text-decoration: none;
}

.article-card h2 a:hover,
.article-card h3 a:hover {
    color: var(--primary-color);
}

.article-excerpt {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more {
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
    font-size: 0.95rem;
}

.read-more:hover {
    color: var(--primary-dark);
}

/* Contact Forms */
.contact-form-section {
    padding: 80px 0;
}

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

.contact-info h2 {
    color: var(--text-dark);
    margin-bottom: 20px;
}

.contact-image {
    width: 100%;
    height: auto;
    max-width: 300px;
    margin-bottom: 20px;
}

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

.contact-item {
    margin-bottom: 20px;
    padding: 15px;
    background-color: var(--background-cream);
    border-radius: 8px;
}

.contact-item strong {
    color: var(--text-dark);
    display: block;
    margin-bottom: 5px;
}

.contact-form {
    background-color: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px var(--shadow-light);
    border: 1px solid var(--border-light);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-light);
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background-color: var(--background-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: white;
}

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

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
}

.checkbox-group label {
    margin-bottom: 0;
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Contact Methods */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.contact-method {
    background-color: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px var(--shadow-light);
    border: 1px solid var(--border-light);
}

.method-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 25px;
}

.contact-method h3 {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.contact-method p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 10px;
}

.method-note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

/* FAQ */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.faq-item {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 15px var(--shadow-light);
    border: 1px solid var(--border-light);
}

.faq-item h3 {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Thanks Page */
.thanks-section {
    padding: 100px 0;
    text-align: center;
}

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

.thanks-icon {
    width: 120px;
    height: 120px;
    margin-bottom: 30px;
}

.thanks-content h1 {
    color: var(--primary-color);
    font-size: 3rem;
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 50px;
    line-height: 1.6;
}

.thanks-info {
    margin-bottom: 50px;
}

.thanks-info h2 {
    color: var(--text-dark);
    margin-bottom: 30px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.step {
    background-color: white;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px var(--shadow-light);
    border: 1px solid var(--border-light);
}

.step-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.step h3 {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.step p {
    color: var(--text-light);
    line-height: 1.5;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.contact-reminder {
    background-color: var(--background-cream);
    padding: 30px;
    border-radius: 12px;
    margin-top: 40px;
}

.contact-reminder h3 {
    color: var(--text-dark);
    margin-bottom: 15px;
}

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

.contact-quick p {
    margin-bottom: 8px;
    color: var(--text-light);
}

/* Footer */
.footer {
    background-color: var(--text-dark);
    color: white;
    padding: 60px 0 20px;
    margin-top: 50px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo .logo {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

.footer-logo .site-name {
    color: white;
    font-size: 1.4rem;
    font-weight: 600;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
    text-decoration: underline;
}

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

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

/* Legal Pages */
.legal-content {
    padding: 60px 0;
}

.legal-text {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.legal-intro {
    text-align: center;
    margin-bottom: 50px;
    padding: 40px;
    background-color: var(--background-cream);
    border-radius: 12px;
}

.legal-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.legal-text h2 {
    color: var(--text-dark);
    margin-top: 40px;
    margin-bottom: 20px;
    padding-top: 20px;
    border-top: 2px solid var(--border-light);
}

.legal-text h3 {
    color: var(--text-medium);
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-text ul,
.legal-text ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-text li {
    margin-bottom: 8px;
    color: var(--text-light);
    line-height: 1.6;
}

.contact-box {
    background-color: var(--background-cream);
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    border-left: 4px solid var(--primary-color);
}

/* Article Styles */
.article-header {
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--text-medium) 100%);
    color: white;
    padding: 60px 0;
}

.breadcrumb {
    font-size: 0.9rem;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: white;
}

.article-header .article-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.reading-time {
    color: rgba(255, 255, 255, 0.7);
}

.article-header h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 15px;
    line-height: 1.2;
}

.article-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
}

.blog-article {
    padding: 60px 0;
}

.article-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.featured-image {
    width: 100%;
    height: auto;
    max-width: 400px;
    margin: 0 auto 20px;
    display: block;
}

.image-caption {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 40px;
}

.article-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
}

.article-text h2 {
    margin-top: 50px;
    margin-bottom: 25px;
    color: var(--text-dark);
    font-size: 1.8rem;
}

.article-text h3 {
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--text-medium);
    font-size: 1.4rem;
}

.article-text h4 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text-medium);
    font-size: 1.2rem;
}

.quote-section {
    background-color: var(--background-cream);
    padding: 40px 30px;
    border-radius: 12px;
    margin: 40px 0;
    border-left: 5px solid var(--primary-color);
    text-align: center;
}

.quote-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.quote-section blockquote {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.6;
}

.quote-section cite {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 500;
}

.highlight-box {
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    margin: 30px 0;
    box-shadow: 0 4px 20px var(--shadow-light);
    border: 1px solid var(--border-light);
}

.highlight-box h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.3rem;
    margin-top: 0;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 50px 40px;
    border-radius: 15px;
    text-align: center;
    margin: 50px 0;
}

.cta-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 25px;
    filter: brightness(0) invert(1);
}

.cta-section h3 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.5rem;
    margin-top: 0;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.cta-section .btn {
    background-color: white;
    color: var(--primary-color);
    font-weight: 600;
}

.cta-section .btn:hover {
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--primary-dark);
}

.article-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 60px;
    padding-top: 30px;
    border-top: 2px solid var(--border-light);
    flex-wrap: wrap;
    gap: 20px;
}

.share-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.share-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

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

.related-articles {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid var(--border-light);
}

.related-articles h2 {
    color: var(--text-dark);
    margin-bottom: 30px;
    text-align: center;
}

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

.related-card {
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 15px var(--shadow-light);
    border: 1px solid var(--border-light);
    text-align: center;
}

.related-image {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.related-card h3 {
    margin-bottom: 10px;
    font-size: 1.1rem;
    margin-top: 0;
}

.related-card h3 a {
    color: var(--text-dark);
    text-decoration: none;
}

.related-card h3 a:hover {
    color: var(--primary-color);
}

.related-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mt-0 {
    margin-top: 0;
}

.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.6s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-up {
    animation: slideUp 0.6s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
