/* =================================
   Homepage Styles - ValueCommerce Style
   ================================= */

/* Page specific styles from target_index.html */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'ヒラギノ角ゴ Pro W3', Meiryo, sans-serif;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
    font-size: 14px;
}

/* Header */
header {
    background-color: #007071;
    color: white;
    position: relative;
}

#header_inner {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

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

.logo img {
    height: 40px;
}

.sitename a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
}

.utility_navi ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

.utility_navi a {
    color: white;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.utility_navi a:hover {
    background-color: rgba(255,255,255,0.1);
}

.utility_navi span a {
    background-color: #ff6600;
    font-weight: bold;
}

/* Drawer Menu */
.drawer {
    display: none;
}

.drawer_checkbox {
    display: none;
}

.drawer_icon {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 24px;
    height: 24px;
    justify-content: space-around;
}

.drawer_icon-parts {
    width: 100%;
    height: 3px;
    background-color: white;
    border-radius: 2px;
    transition: 0.3s;
}

.drawer_icon-parts::before,
.drawer_icon-parts::after {
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    background-color: white;
    border-radius: 2px;
    transition: 0.3s;
    margin-top: -3px;
}

.drawer_icon-parts::after {
    margin-top: 6px;
}

/* Breadcrumbs */
#topicpath {
    background-color: #f0f0f0;
    padding: 10px 20px;
    font-size: 12px;
}

#topicpath p {
    max-width: 1000px;
    margin: 0 auto;
}

#topicpath a {
    color: #007071;
    text-decoration: none;
}

/* Main Content */
#contents {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.content-wrap {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

/* Main Article */
.content-main {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.content-header {
    padding: 30px;
    border-bottom: 1px solid #eee;
    background-color: #007071;
    color: white;
}

.single-keyvisual {
    width: 100%;
    height: 300px;
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 8px;
}

.content-header h1 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.4;
    color: white;
}

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

.sns a {
    display: inline-block;
    transition: transform 0.3s;
}

.sns a:hover {
    transform: scale(1.1);
}

.category-label {
    display: inline-block;
    background-color: #4CAF50;
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    text-decoration: none;
}

.category-label-beginner {
    background-color: #4CAF50;
}

/* Article Content */
.content-body {
    padding: 30px;
}

.article-body h2 {
    font-size: 24px;
    font-weight: bold;
    margin: 30px 0 15px;
    color: #333;
    border-bottom: 2px solid #007071;
    padding-bottom: 8px;
}

.article-body h3 {
    font-size: 20px;
    font-weight: bold;
    margin: 25px 0 12px;
    color: #333;
}

.article-body p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.article-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

.article-body a {
    color: #007071;
    text-decoration: underline;
}

.article-body a:hover {
    color: #005455;
}

.article-body strong {
    font-weight: bold;
    color: #333;
}

/* Button Styles */
.btn_green {
    display: inline-block;
    background-color: #4CAF50;
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    transition: background-color 0.3s;
    margin: 20px 0;
}

.btn_green:hover {
    background-color: #45a049;
    color: white;
    text-decoration: none;
}

/* Link Parts Box */
.link-parts-box {
    background-color: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    margin: 30px 0;
    display: flex;
    gap: 20px;
    align-items: center;
}

.link-parts-box .text {
    flex: 1;
}

.link-parts-box .text strong {
    font-size: 16px;
    color: #333;
    display: block;
    margin-bottom: 8px;
}

.link-parts-box .text .link {
    color: #007071;
    font-weight: bold;
    margin-top: 10px;
    display: block;
}

.link-parts-box .img {
    flex: 0 0 150px;
}

.link-parts-box .img img {
    width: 100%;
    height: auto;
    border-radius: 6px;
}

/* Featured Blocks */
.featured-block {
    background-color: #f0f8ff;
    border: 1px solid #b3d9ff;
    border-radius: 8px;
    padding: 20px;
    margin: 30px 0;
}

.featured-block h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
    border-bottom: 1px solid #b3d9ff;
    padding-bottom: 8px;
}

.featured-block a {
    color: #007071;
    text-decoration: none;
}

.featured-block a:hover {
    text-decoration: underline;
}

/* Related Tags */
.relatedTags {
    background-color: #f5f5f5;
    padding: 15px;
    border-radius: 8px;
    margin: 30px 0;
}

.relatedTags a {
    display: inline-block;
    background-color: #007071;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 12px;
    margin: 2px;
}

.relatedTags a:hover {
    background-color: #005455;
    color: white;
}

/* Goto Section */
.goto-list {
    text-align: center;
    padding: 30px;
    border-top: 1px solid #eee;
}

.goto-list a {
    display: inline-block;
    background-color: #007071;
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    margin: 0 10px;
    transition: background-color 0.3s;
}

.goto-list a:hover {
    background-color: #005455;
    color: white;
}

.goto-guide {
    background-color: #f8f9fa;
    padding: 30px;
    text-align: center;
    border-top: 1px solid #eee;
}

.goto-guide h2 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.goto-guide a {
    display: inline-block;
    background-color: #ff6600;
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    margin-top: 15px;
    font-weight: bold;
}

/* Sidebar */
.content-sub {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 20px;
    height: fit-content;
}

.content-sub h2 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
    border-bottom: 2px solid #007071;
    padding-bottom: 10px;
}

.content-nav h3 {
    background-color: #007071;
    color: white;
    padding: 12px 15px;
    margin: 10px 0 0;
    cursor: pointer;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.content-nav h3:hover {
    background-color: #005455;
    color: white;
}

.content-nav h3.active {
    background-color: #005455;
    color: white;
}

.child-menu {
    display: none;
    background-color: #f8f9fa;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 0 0 6px 6px;
}

.child-menu.active {
    display: block;
}

.content-nav-list {
    list-style: none;
    padding: 0;
}

.content-nav-list-item {
    margin-bottom: 8px;
}

.content-nav-list-item a {
    color: #333;
    text-decoration: none;
    font-size: 13px;
    line-height: 1.4;
    display: block;
    padding: 5px 0;
    border-bottom: 1px solid #eee;
}

.content-nav-list-item a:hover {
    color: #007071;
}

.content-nav-list-item.active a {
    color: #007071;
    font-weight: bold;
}

.pb10 {
    padding-bottom: 10px;
    color: #666;
    font-size: 12px;
}

.align_r {
    text-align: right;
    display: block;
    margin-top: 15px;
    color: #007071;
    text-decoration: none;
    font-size: 12px;
}

.banner-img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    border-radius: 6px;
}

/* Want to Start Section */
.want-to-start {
    background-color: #e8f5e8;
    border: 1px solid #4CAF50;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    text-align: center;
}

.want-to-start h2 {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
}

.regist_right_btn {
    background-color: #4CAF50;
    color: white;
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 10px;
}

.how_to_regist a {
    color: #007071;
    text-decoration: none;
    font-size: 12px;
    margin: 0 10px;
}

/* ECsite Section */
.ecsite {
    background-color: #fff3e0;
    border: 1px solid #ff9800;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    text-align: center;
}

.ecsite h2 {
    font-size: 16px;
    margin: 0;
}

.ecsite a {
    color: #ff6600;
    text-decoration: none;
    font-weight: bold;
}

.building {
    width: 20px;
    height: auto;
    margin-right: 8px;
    vertical-align: middle;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    padding: 30px 0;
    text-align: center;
}

.footer_inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer_inner .utility_navi ul {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.footer_inner .utility_navi a {
    color: #ccc;
    text-decoration: none;
    font-size: 12px;
}

.footer_inner .utility_navi a:hover {
    color: white;
}

.copyright small {
    color: #999;
    font-size: 11px;
}

/* Page Top Button */
.pagetop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #007071;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    transition: all 0.3s;
}

.pagetop:hover {
    background-color: #005455;
    transform: translateY(-2px);
    color: white;
}

.pagetop a {
    color: white;
    text-decoration: none;
}

/* Floating CTA */
.stepup-floating-cta {
    background-color: #e1fafa;
    border: 1px solid #b3d9ff;
    padding: 15px;
    position: sticky;
    top: 0;
    z-index: 100;
    display: none;
}

.stepup-floating-cta .row {
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.stepup-floating-cta .col-md-5 {
    flex: 0 0 auto;
    width: 45%;
}

.stepup-floating-cta .btn {
    display: block;
    padding: 15px;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    font-weight: bold;
    transition: all 0.3s;
}

.stepup-floating-cta .btn-primary {
    background-color: #007071;
    color: white;
    border: 1px solid #007071;
}

.stepup-floating-cta .btn-outline-primary {
    background-color: white;
    color: #007071;
    border: 1px solid #007071;
}

.stepup-floating-cta small {
    font-size: 12px;
    display: block;
    margin-bottom: 5px;
}

.stepup-floating-cta .fs-4 {
    font-size: 16px;
}

/* Responsive Design */
@media (max-width: 767px) {
    .drawer {
        display: block;
    }

    .drawer_icon {
        display: flex;
    }

    .utility_navi {
        display: none;
    }

    .content-wrap {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    #header_inner {
        padding: 10px;
    }

    .logo {
        gap: 10px;
    }

    .content-header h1 {
        font-size: 22px;
    }

    .article-body h2 {
        font-size: 20px;
    }

    .article-body h3 {
        font-size: 18px;
    }

    .link-parts-box {
        flex-direction: column;
    }

    .link-parts-box .img {
        flex: none;
        width: 100%;
    }

    .stepup-floating-cta {
        display: block;
    }

    .stepup-floating-cta .row {
        flex-direction: column;
        gap: 10px;
    }

    .stepup-floating-cta .col-md-5 {
        width: 100%;
    }
}

/* Utility Classes */
.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

.align_c {
    text-align: center;
}

.mb10 {
    margin-bottom: 10px;
}

.mb20 {
    margin-bottom: 20px;
}

.mb30 {
    margin-bottom: 30px;
}

.sp_view {
    display: none;
}

@media (max-width: 767px) {
    .sp_view {
        display: block;
    }
}

/* Navigation Drawer Menu */
.drawer_menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background-color: #007071;
    transition: left 0.3s ease;
    z-index: 1000;
    padding-top: 60px;
}

.drawer_checkbox:checked ~ .drawer_menu {
    left: 0;
}

.drawer_menu ul {
    list-style: none;
    padding: 0;
}

.drawer_item {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.drawer_item a {
    display: block;
    padding: 15px 20px;
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.drawer_item a:hover {
    background-color: rgba(255,255,255,0.1);
}

/* =================================
   Homepage Specific Styles
   ================================= */

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #007071 0%, #005455 100%);
    color: white;
    padding: 80px 0;
    margin-top: -20px;
}

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

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

.hero-title {
    font-size: 48px;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 20px;
    color: white;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
    color: white;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 5px;
    color: white;
}

.stat-label {
    font-size: 14px;
    opacity: 0.8;
    color: white;
}

.hero-cta {
    display: flex;
    gap: 20px;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s;
}

.btn-primary {
    background-color: #ff6600;
    color: white;
    box-shadow: 0 4px 12px rgba(255,102,0,0.3);
}

.btn-primary:hover {
    background-color: #e55a00;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255,102,0,0.4);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

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

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Main Content */
.homepage-contents {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* Section Styles */
.section-container {
    margin-bottom: 80px;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.title-main {
    display: block;
    font-size: 36px;
    font-weight: bold;
    color: #007071;
    margin-bottom: 10px;
}

.title-sub {
    display: block;
    font-size: 16px;
    color: #666;
}

/* Ranking Section */
.ranking-section {
    background-color: white;
    padding: 60px 0;
    margin: 0 -20px;
}

.ranking-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.ranking-item {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 30px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 30px;
    align-items: center;
    transition: all 0.3s;
}

.ranking-item:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.rank-badge {
    width: 60px;
    height: 60px;
    background-color: #007071;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
}

.rank-1 .rank-badge {
    background-color: #ff6600;
    font-size: 20px;
    width: 70px;
    height: 70px;
}

.rank-2 .rank-badge {
    background-color: #666;
}

.rank-3 .rank-badge {
    background-color: #999;
}

.site-info h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #333;
}

.rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.stars {
    color: #ff6600;
    font-size: 18px;
}

.score {
    font-weight: bold;
    color: #333;
}

.description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

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

.feature-tag {
    background-color: #f0f8ff;
    color: #007071;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.site-action {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-register,
.btn-detail {
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    text-align: center;
    font-weight: bold;
    transition: all 0.3s;
}

.btn-register {
    background-color: #4CAF50;
    color: white;
}

.btn-register:hover {
    background-color: #45a049;
}

.btn-detail {
    background-color: transparent;
    color: #007071;
    border: 1px solid #007071;
}

.btn-detail:hover {
    background-color: #007071;
    color: white;
}

.ranking-more {
    text-align: center;
    margin-top: 40px;
}

.btn-more {
    display: inline-block;
    padding: 14px 40px;
    background-color: #007071;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: all 0.3s;
}

.btn-more:hover {
    background-color: #005455;
    color: white;
}

/* Category Section */
.category-section {
    padding: 60px 0;
}

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

.category-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.category-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
}

.category-icon img {
    width: 100%;
    height: 100%;
}

.category-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.salary-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.salary-info .label {
    color: #666;
    font-size: 14px;
}

.salary-info .amount {
    font-size: 24px;
    font-weight: bold;
    color: #ff6600;
}

.category-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.category-link {
    color: #007071;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
}

.category-link:hover {
    color: #005455;
}

/* Success Section */
.success-section {
    background-color: #f8f9fa;
    padding: 60px 0;
    margin: 0 -20px;
}

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

.success-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.success-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.success-header img {
    width: 50px;
    height: 50px;
}

.user-info {
    display: flex;
    flex-direction: column;
}

.user-name {
    font-weight: bold;
    color: #333;
}

.user-job {
    color: #666;
    font-size: 14px;
}

.success-result {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 20px;
    background-color: #f0f8ff;
    border-radius: 8px;
}

.before {
    color: #666;
}

.arrow {
    color: #007071;
    font-weight: bold;
}

.after {
    font-weight: bold;
    color: #333;
}

.up {
    background-color: #ff6600;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
}

.success-comment {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.success-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.success-tags span {
    background-color: #e8f5e8;
    color: #4CAF50;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
}

/* Conversion Section */
.conversion-section {
    padding: 80px 0;
}

.conversion-box {
    background: linear-gradient(135deg, #007071 0%, #005455 100%);
    color: white;
    padding: 60px;
    border-radius: 16px;
    text-align: center;
}

.conversion-box h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: white;
}

.conversion-box p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
    color: white;
}

.conversion-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 20px;
}

.btn-conversion-primary,
.btn-conversion-secondary {
    padding: 18px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s;
}

.btn-conversion-primary {
    background-color: #ff6600;
    color: white;
}

.btn-conversion-primary:hover {
    background-color: #e55a00;
    transform: translateY(-2px);
}

.btn-conversion-secondary {
    background-color: white;
    color: #007071;
}

.btn-conversion-secondary:hover {
    background-color: #f0f0f0;
}

.conversion-note {
    font-size: 14px;
    opacity: 0.8;
    color: white;
}

/* Articles Section */
.articles-section {
    padding: 60px 0;
}

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

.article-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.article-link {
    text-decoration: none;
    color: inherit;
}

.article-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.article-content {
    padding: 20px;
}

.article-category {
    display: inline-block;
    background-color: #e8f5e8;
    color: #4CAF50;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    margin-bottom: 10px;
}

.article-title {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.4;
}

.article-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 14px;
}

.article-date {
    color: #999;
    font-size: 12px;
}

.articles-more {
    text-align: center;
    margin-top: 40px;
}

/* Footer CTA */
.footer-cta {
    background-color: #007071;
    color: white;
    padding: 60px 0;
    text-align: center;
}

.footer-cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-cta h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: white;
}

.footer-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
    color: white;
}

.btn-footer-cta {
    display: inline-block;
    background-color: #ff6600;
    color: white;
    padding: 18px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s;
}

.btn-footer-cta:hover {
    background-color: #e55a00;
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .ranking-item {
        grid-template-columns: auto 1fr;
    }
    
    .site-action {
        grid-column: 1 / -1;
        flex-direction: row;
        justify-content: center;
    }
    
    .conversion-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .title-main {
        font-size: 28px;
    }
    
    .ranking-item {
        padding: 20px;
    }
    
    .success-grid {
        grid-template-columns: 1fr;
    }
}