/* General Body Styles */
body {
    font-family: 'Nunito', sans-serif;
    margin: 0;
    background-color: #FFE87C; /* 改为明亮的黄色背景 */
    color: #4A4A4A; /* 改为深灰色文字 */
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

.container.narrow {
    max-width: 840px;
}

.logo { /* Main site logo if used outside mini-header */
    font-family: 'Pacifico', cursive;
    font-size: 1.8em;
    color: #B8860B; /* 改为暗金黄色 */
    margin: 0;
    text-align: left;
}

.logo-art { /* For the .Art part of the main logo */
    color: #6F4E37; /* 改为咖啡色 */
}

.site-header {
    background-color: rgba(255, 248, 220, 0.85);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 6px rgba(111, 78, 55, 0.1);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 6px 0;
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.brand-link:hover {
    transform: scale(1.05);
}

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

.site-nav {
    display: flex;
    align-items: center;
    gap: 18px;
}

.site-nav a {
    color: #6F4E37;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 999px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.site-nav a:hover {
    background-color: rgba(184, 134, 11, 0.15);
    color: #4a321f;
}

/* Language Selector for Header */
.language-selector-header {
    position: relative;
}

.language-button-header {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(184, 134, 11, 0.1);
    border: none;
    border-radius: 999px;
    color: #6F4E37;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.language-button-header:hover {
    background: rgba(184, 134, 11, 0.2);
}

.language-dropdown-header {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background: rgba(255, 248, 220, 0.98);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 180px;
    max-height: 400px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 99999;
}

.language-dropdown-header.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* SEO Content Section Styles */
.seo-content {
    background-color: #FFE87C; /* 改为明亮的黄色背景 */
    padding: 0 25px; /* MODIFIED: Removed top/bottom padding, was 60px 25px */
    margin-bottom: 30px;
}

.section-title { /* General section title for SEO, Key Features, User Cases etc. */
    font-size: 3rem;
    color: #6F4E37; /* 改为咖啡色 */
    text-align: center;
    margin-top: 0; /* ADDED for consistent spacing */
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-title.compact {
    font-size: 2.4rem;
}

.section-intro { /* Intro text for SEO sections */
    font-size: 1.1rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
    color: #8B5A2B; /* 改为深棕色 */
}

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

/* How It Works Section (within SEO) */
.how-it-works {
    margin-bottom: 3rem;
    padding-top: 3rem; /* MODIFIED: Was 1rem, now 3rem for top spacing */
    padding-bottom: 2rem; /* ADDED: For consistent spacing after its content, before its margin-bottom */
}

.steps-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 2rem;
    gap: 1.5rem;
}

.step-card {
    flex: 1;
    min-width: 250px;
    background-color: #FAF0E6; /* 改为亚麻色背景 */
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid #D2B48C; /* 改为鞣革色边框 */
    position: relative;
    padding-top: 3rem; /* Space for number */
    text-align: center;
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #FFD700; /* 改为标准金色 */
    color: #6F4E37; /* 改为咖啡色文字 */
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.step-card h3 {
    color: #6F4E37; /* 改为咖啡色 */
    margin-top: 0;
}

.step-card p {
    color: #8B5A2B; /* 改为深棕色 */
    margin-bottom: 0;
}

/* Features Section (within SEO, named .features-highlight) */
.features-highlight {
    background-color: #FFE87C; /* 改为与主背景一致的黄色 */
    padding-top: 3rem; /* 调整顶部间距 */
    padding-right: 0;
    padding-bottom: 3rem;
    padding-left: 0;
    border-radius: 0;
    margin-bottom: 3rem;
    border: none;
}

.features-container { /* Grid container for these features */
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-group { /* Individual feature group card */
    background-color: #FFF8DC; /* 浅色卡片 */
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #D2B48C;
    box-shadow: 0 4px 12px rgba(111, 78, 55, 0.08);
    transition: all 0.3s ease;
}

.feature-group:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(111, 78, 55, 0.12);
}

.feature-group h3 {
    color: #6F4E37; /* 改为咖啡色 */
    margin-top: 0;
    font-size: 1.2rem;
    border-bottom: 2px solid #D2B48C; /* 改为鞣革色边框 */
    padding-bottom: 0.5rem;
}

.feature-group ul {
    padding-left: 1.5rem;
    margin-bottom: 0;
}

.feature-group li {
    margin-bottom: 0.5rem;
    color: #8B5A2B; /* 改为深棕色 */
}

.feature-group li:last-child {
    margin-bottom: 0;
}

/* FAQ Section (within SEO) */
.faq-section {
    margin-bottom: 3rem;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: grid; /* ADDED for two columns */
    grid-template-columns: repeat(2, 1fr); /* ADDED for two columns */
    gap: 1rem; /* ADDED for spacing between columns */
}

.faq-item {
    background-color: #FAF0E6; /* 改为亚麻色背景 */
    border-radius: 10px;
    margin-bottom: 1rem;
    padding: 1.5rem;
    border: 1px solid #D2B48C; /* 改为鞣革色边框 */
}

.faq-question {
    color: #6F4E37; /* 改为咖啡色 */
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.faq-answer {
    color: #8B5A2B; /* 改为深棕色 */
    margin-bottom: 0;
}

/* Footer Styles */
footer {
    background-color: #6F4E37; /* 改为咖啡色背景 */
    color: #FAF0E6; /* 改为亚麻色文字 */
    text-align: center;
    padding: 25px 0;
    margin-top: auto; /* Pushes footer to bottom */
}

footer .container { /* Footer specific container adjustments */
    padding: 0 20px;
}

footer p {
    margin: 0 0 10px 0;
}

footer nav a {
    color: #FFD700; /* 改为标准金色 */
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s ease;
}

footer nav a:hover {
    color: #DAA520; /* 改为金麒麟色 */
    text-decoration: underline;
}

/* Key Features Section Styles */
.key-features {
    padding-top: 3rem; /* MODIFIED: Was 40px */
    padding-bottom: 2rem; /* MODIFIED: Was 40px, now 2rem */
    padding-left: 0;
    padding-right: 0;
    background-color: #FFE87C; /* 改为明亮的黄色背景 */
    text-align: center;
    margin-bottom: 0; /* ADDED for spacing before .user-cases */
}

.section-description { /* Description text for Key Features & User Cases */
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px; /* Reduced margin-bottom from 60px */
    color: #8B5A2B; /* 改为深棕色 */
    font-size: 1.2rem;
    line-height: 1.6;
}

.features-grid { /* Grid for key feature items */
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px; /* Reduced gap from 60px */
    max-width: 1200px;
    margin: 0 auto;
}

.feature-item { /* Individual key feature item */
    text-align: center;
    padding: 15px 10px; /* Reduced padding from 20px 10px */
    background-color: transparent;
    border-radius: 0;
    transition: all 0.3s ease;
    border: none;
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: transparent; /* No border change on hover */
    background-color: transparent; /* No background change on hover */
}

.feature-icon {
    width: 80px; /* Reduced from 120px */
    height: 80px; /* Reduced from 120px */
    margin-bottom: 15px; /* Reduced from 30px */
}

.feature-item h3 {
    color: #6F4E37; /* 改为咖啡色 */
    margin-bottom: 10px; /* Reduced from 20px */
    font-size: 1.3rem; /* Reduced from 1.6rem */
    font-weight: 600;
}

.feature-item p {
    color: #8B5A2B; /* 改为深棕色 */
    font-size: 1rem; /* Reduced from 1.1rem */
    line-height: 1.6;
}

/* User Cases Section Styles */
.user-cases {
    padding-top: 0; /* MODIFIED: Was 40px, relies on .key-features margin-bottom */
    padding-bottom: 2rem; /* MODIFIED: Was 40px, now 2rem */
    padding-left: 0;
    padding-right: 0;
    background-color: #FFE87C; /* 改为明亮的黄色背景 */
    margin-bottom: 0; /* ADDED for spacing before next major section (e.g., .seo-content) */
}

/* Expertise Section - Redesigned for better visual appeal */
.expertise-section {
    background-color: #FFE87C;
    padding: 4rem 0;
}

.expertise-section > .container > .section-title {
    text-align: center;
    font-size: 2rem;
    color: #6F4E37;
    margin-bottom: 1rem;
}

.expertise-section > .container > .section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #5A5A5A;
    font-size: 1.1rem;
    line-height: 1.7;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.story-panel {
    background: #FFF8DC;
    border: 1px solid #D2B48C;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(111, 78, 55, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.story-panel:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(111, 78, 55, 0.12);
}

.page-eyebrow,
.page-eyebrow.subtle {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #B8860B;
    margin-bottom: 1rem;
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(184, 134, 11, 0.1);
    border-radius: 20px;
}

.section-title.compact {
    font-size: 1.8rem;
    margin: 1rem 0;
    color: #6F4E37;
    font-weight: 700;
    line-height: 1.3;
}

.section-description.left {
    color: #5A5A5A;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.story-list {
    list-style: none;
    padding-left: 0;
    margin-top: 1.5rem;
}

.story-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1.2rem;
    color: #4A4A4A;
    line-height: 1.6;
}

.story-list li::before {
    content: "✦";
    position: absolute;
    left: 0;
    color: #B8860B;
    font-size: 1.2rem;
    font-weight: bold;
}

.story-panel-title {
    font-size: 1.5rem;
    color: #6F4E37;
    margin-bottom: 1.5rem;
    font-weight: 700;
    border-bottom: 2px solid #D2B48C;
    padding-bottom: 0.8rem;
}

.research-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.research-card {
    background: rgba(255, 255, 255, 0.5);
    border-left: 3px solid #B8860B;
    border-radius: 6px;
    padding: 1.2rem;
    transition: all 0.3s ease;
}

.research-card:hover {
    background: rgba(255, 255, 255, 0.8);
    border-left-width: 4px;
    transform: translateX(4px);
}

.research-card h4 {
    margin: 0 0 0.8rem 0;
    color: #6F4E37;
    font-size: 1.15rem;
    font-weight: 700;
}

.research-card p {
    margin: 0;
    color: #5A5A5A;
    line-height: 1.6;
}

/* Use Case Narrative Section - Redesigned for better visual appeal */
.usecase-narrative {
    background-color: #FFE87C;
    padding: 4rem 0;
}

.usecase-narrative .section-title.compact {
    text-align: center;
    font-size: 2rem;
    color: #6F4E37;
    margin-bottom: 1rem;
}

.usecase-narrative .section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #5A5A5A;
    font-size: 1.1rem;
    line-height: 1.7;
}

.usecase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.usecase-card {
    background: #FFF8DC;
    border: 1px solid #D2B48C;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(111, 78, 55, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.usecase-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #B8860B, #D2691E);
}

.usecase-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(111, 78, 55, 0.12);
    border-color: #B8860B;
}

.usecase-card h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: #6F4E37;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.3;
}

.usecase-card p {
    margin: 0;
    color: #5A5A5A;
    line-height: 1.7;
    font-size: 1rem;
}

.page-hero {
    background: linear-gradient(135deg, rgba(255, 232, 124, 0.7), rgba(250, 214, 165, 0.7)), url('/images/Background.png');
    background-size: cover;
    background-position: center;
    padding: 4rem 0 3rem;
    text-align: center;
}

.page-hero.about-hero {
    background-blend-mode: lighten;
}

.page-hero .page-subtitle {
    font-size: 1.2rem;
    max-width: 720px;
    margin: 0 auto 1.5rem;
    color: #4a321f;
}

.hero-cta-group {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.page-section {
    padding: 3rem 0;
}

.page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.page-text-card {
    background: #FFF8DC;
    border-radius: 16px;
    border: 1px solid #D2B48C;
    padding: 2rem;
}

.page-card {
    background: white;
    border-radius: 16px;
    border: 1px solid #E8CFAF;
    padding: 1.75rem;
    box-shadow: 0 20px 30px rgba(111, 78, 55, 0.08);
}

.page-card h3 {
    margin-top: 0;
    color: #6F4E37;
}

.highlight-card {
    background: #FAF0E6;
}

.page-list {
    list-style: none;
    padding-left: 0;
}

.page-list li {
    margin-bottom: 0.5rem;
    padding-left: 1.25rem;
    position: relative;
}

.page-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #B8860B;
}

.mission-section blockquote {
    font-style: italic;
    color: #8B5A2B;
    margin: 1.5rem 0 0;
    padding-left: 1rem;
    border-left: 4px solid #D2B48C;
}

.pipeline-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.cta-panel {
    background: #6F4E37;
    color: #FAF0E6;
    text-align: center;
    padding: 3rem 0;
}

.cta-panel .btn-primary {
    background-color: #FFD700;
    color: #6F4E37;
}

.legal-section {
    background: #FFF8DC;
    padding: 2.5rem 0;
}

.legal-section:nth-of-type(even) {
    background: #FFE87C;
}

.legal-card {
    background: white;
    border-radius: 16px;
    border: 1px solid #E8CFAF;
    padding: 1.75rem;
    box-shadow: 0 15px 20px rgba(111, 78, 55, 0.08);
    margin-bottom: 1.5rem;
}

.legal-card.full {
    width: 100%;
}

.legal-card ul {
    margin-bottom: 0;
    padding-left: 1.5rem;
    color: #5b3a24;
}

.legal-card li {
    margin-bottom: 0.5rem;
}

.legal-card a {
    color: #B8860B;
}

.updated-text {
    font-size: 0.95rem;
    color: #4a321f;
}

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

.contact-email a {
    color: #B8860B;
    font-weight: 700;
}

.contact-card .btn {
    margin-top: 1rem;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Changed from 2 columns */
    grid-template-rows: repeat(2, 1fr);    /* Explicitly 2 rows for 6 items */
    gap: 30px; /* Reduced gap from 40px */
    max-width: 1200px;
    margin: 0 auto;
}

.case-item {
    background-color: transparent;
    border-radius: 0;
    overflow: hidden;
    border: none;
    transition: all 0.3s ease;
}

.case-item:hover {
    transform: translateY(-5px);
    border-color: transparent;
    background-color: transparent;
}

.image-comparison {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.comparison-container {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    border-radius: 8px;
}

.image-label {
    position: absolute;
    bottom: 10px;
    padding: 4px 8px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    font-size: 0.8rem;
    font-weight: 500;
    border-radius: 4px;
    z-index: 4;
    backdrop-filter: blur(4px);
}

.image-label.original { left: 10px; }
.image-label.generated { right: 10px; }

.original-img, .generated-img {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.original-img { left: 0; z-index: 1; }
.generated-img { right: 0; z-index: 2; clip-path: polygon(50% 0, 100% 0, 100% 100%, 50% 100%); }

.slider-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background-color: #e87a90;
    z-index: 3;
    cursor: ew-resize;
}

.slider-handle::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background-color: #e87a90;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.case-description {
    padding: 15px 0;
    text-align: center;
}

.case-description h3 {
    color: #6F4E37; /* 改为咖啡色 */
    margin-bottom: 8px;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.3;
}

/* Blog Styles */
.blog-hero {
    background: linear-gradient(135deg, rgba(255, 232, 124, 0.7), rgba(250, 214, 165, 0.7)), url('/images/Background.png');
    background-size: cover;
    background-position: center;
    padding: 4rem 0 3rem;
    text-align: center;
}

.blog-main-title {
    font-size: 3rem;
    color: #6F4E37;
    margin-top: 0;
    margin-bottom: 1rem;
    font-weight: 700;
}

.blog-subtitle {
    font-size: 1.3rem;
    color: #8B5A2B;
    max-width: 720px;
    margin: 0 auto;
}

.blog-list-section {
    padding: 3rem 0;
    background-color: #FFE87C;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: #FFF8DC;
    border: 1px solid #D2B48C;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(111, 78, 55, 0.08);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(111, 78, 55, 0.15);
}

.blog-category {
    display: inline-block;
    font-size: 0.85rem;
    color: #B8860B;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    font-weight: 600;
}

.blog-card-title {
    margin: 0 0 1rem;
    font-size: 1.5rem;
    line-height: 1.3;
}

.blog-card-title a {
    color: #6F4E37;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card-title a:hover {
    color: #B8860B;
}

.blog-card-excerpt {
    color: #8B5A2B;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.blog-read-more {
    color: #B8860B;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

.blog-read-more:hover {
    color: #6F4E37;
}

/* Blog Article Styles */
.blog-article {
    background-color: #FFE87C;
    padding: 2rem 0 4rem;
}

.article-header {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #D2B48C;
}

.back-to-blog {
    display: inline-block;
    color: #B8860B;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.back-to-blog:hover {
    color: #6F4E37;
}

.article-category {
    display: inline-block;
    font-size: 0.85rem;
    color: #B8860B;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    font-weight: 600;
}

.article-title {
    font-size: 2.5rem;
    color: #6F4E37;
    margin: 0;
    line-height: 1.2;
    font-weight: 700;
}

.article-content {
    background: #FFF8DC;
    border: 1px solid #D2B48C;
    border-radius: 12px;
    padding: 3rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.article-content h2 {
    color: #6F4E37;
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.article-content h2:first-child {
    margin-top: 0;
}

.article-content p {
    color: #4A4A4A;
    margin-bottom: 1.2rem;
}

.article-content ul,
.article-content ol {
    color: #4A4A4A;
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

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

.article-content strong {
    color: #6F4E37;
    font-weight: 700;
}

.article-content em {
    font-style: italic;
}

.article-cta {
    text-align: center;
    padding: 2rem 0;
}

.cta-button {
    display: inline-block;
    background-color: #FFD700;
    color: #6F4E37;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 16px rgba(184, 134, 11, 0.3);
}

.cta-button:hover {
    background-color: #DAA520;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(184, 134, 11, 0.4);
}

/* Responsive Design - General and for remaining sections */
@media (max-width: 992px) {
    /* General responsive rules for layouts */
    /* .benefits-grid, */ /* Assuming .benefits-grid is similar to .features-container */
    .features-container { /* SEO features grid */
        grid-template-columns: 1fr;
    }
    .steps-container { /* How it works steps */
        flex-direction: column;
    }
     .feature-item, .case-item { /* Padding for items in Key Features / User Cases */
        padding: 15px 10px;
    }
    /* Responsive adjustments for new sections (Key Features, User Cases) */
    .features-grid { /* Key Features grid */
        grid-template-columns: repeat(2, 1fr);
        gap: 30px; /* Adjusted gap from 40px */
    }
    .cases-grid { /* User Cases grid */
        grid-template-columns: repeat(2, 1fr); /* Kept as 2 columns for medium screens */
        grid-template-rows: repeat(3, 1fr); /* Becomes 3 rows for 6 items */
        gap: 30px; /* Adjusted gap */
    }
    .section-intro { /* General section intro text size */
        font-size: 1rem;
    }
     .benefit-card, /* Assuming .benefit-card is similar to .step-card */
     .step-card,
     .feature-group, /* SEO feature group */
     .faq-item {
         padding: 1rem; /* Padding for various cards */
     }
    .faq-container { /* ADDED: Stack FAQ items to single column on smaller screens */
        grid-template-columns: 1fr;
    }
    .feature-icon { /* Key Feature icon size */
        width: 80px;
        height: 80px;
    }
    .expertise-grid {
        grid-template-columns: 1fr;
    }
    .site-nav {
        flex-wrap: wrap;
        justify-content: flex-end;
    }
    /* Blog responsive */
    .blog-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
    .article-content {
        padding: 2rem;
    }
    .article-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .logo { /* Main logo size */
        font-size: 2em;
    }
    .seo-content { /* Padding for SEO content section */
        padding: 15px 10px;
    }
    .section-title { /* General section title size */
        font-size: 1.8rem;
    }
    .section-intro { /* General section intro text size */
        font-size: 1rem;
    }
     .benefit-card, /* Assuming .benefit-card is similar to .step-card */
     .step-card,
     .feature-group, /* SEO feature group */
     .faq-item {
         padding: 1rem; /* Padding for various cards */
     }
    .feature-icon { /* Key Feature icon size */
        width: 80px;
        height: 80px;
    }
    .features-grid, .cases-grid { /* Key Features and User Cases grids */
        grid-template-columns: 1fr; /* Stack to single column */
        gap: 20px; /* Adjusted gap from 30px */
    }
    .cases-grid {
        grid-template-rows: auto; /* Let content define height for single column */
    }
    /* Blog responsive */
    .blog-main-title {
        font-size: 2.2rem;
    }
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .article-content {
        padding: 1.5rem;
    }
    .article-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .container { /* General container width */
        width: 95%;
        padding: 10px 0;
    }
    .seo-content { /* Padding for SEO content */
        padding: 15px 10px;
    }
    .section-title { /* Smallest section title */
        font-size: 1.5rem; /* Adjusted from 2rem for better fit, was 1.5rem before */
    }
    footer nav a { /* Stack footer links */
        display: block;
        margin: 5px 0;
    }
      .benefit-card h3, /* Assuming .benefit-card is similar to .step-card */
      .step-card h3,
      .feature-group h3, /* SEO feature group title */
      .faq-question {
          font-size: 1.1rem; /* Title sizes in cards */
      }
    .feature-icon { /* Smallest feature icon */
        width: 60px;
        height: 60px;
    }
    .feature-item { /* Padding for key feature items */
        padding: 15px 10px; /* Adjusted padding */
    }
    .header-inner {
        flex-direction: column;
        align-items: flex-start;
    }
    .site-nav {
        width: 100%;
        justify-content: space-between;
    }
    .story-panel {
        padding: 1.5rem;
    }
    /* Blog responsive */
    .blog-main-title {
        font-size: 1.8rem;
    }
    .blog-subtitle {
        font-size: 1.1rem;
    }
    .article-content {
        padding: 1rem;
    }
    .article-title {
        font-size: 1.5rem;
    }
    .article-content h2 {
        font-size: 1.4rem;
    }
    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}
