
/* --- Container Settings: Widened to 1440px --- */
.fuji-guide-section {
    width: 96%; /* Fluid width for responsiveness */
    max-width: 1440px; /* Increased from 1200px to 1440px */
    margin: 30px auto;
    padding: 0 10px; /* Reduced padding slightly for a wider look */
    font-family: 'Segoe UI', Verdana, Helvetica, sans-serif;
    color: #333;
    box-sizing: border-box;
}

/* --- Main Title --- */
.fuji-guide-title {
    font-size: 30px;
    font-weight: 800;
    color: #000;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    line-height: 1.2;
}
.fuji-guide-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #ba372a; /* Fuji Red */
    margin: 12px auto 0 auto;
}

/* --- Section Headers --- */
.fuji-section-header {
    font-size: 20px;
    font-weight: 700;
    color: #ba372a;
    border-left: 5px solid #ba372a;
    padding-left: 15px;
    margin-bottom: 20px;
    line-height: 1.2;
}

/* --- 1. Product Types Grid (3 Columns) --- */
.fuji-types-grid {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}
.fuji-type-card {
    flex: 1;
    background-color: #f9f9f9;
    padding: 25px; /* Increased inner padding for better spacing on wide screens */
    border-radius: 4px;
    border: 1px solid #eee;
    transition: transform 0.2s;
}
.fuji-type-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.fuji-type-name {
    font-size: 18px; /* Slightly larger text */
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
    display: block;
}
.fuji-type-desc {
    font-size: 15px;
    color: #555;
    line-height: 1.5;
}

/* --- 2. Grit Selection Grid (2 Columns) --- */
.fuji-grit-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* Increased gap */
    margin-bottom: 40px;
    border-top: 1px solid #eee;
    padding-top: 25px;
}
.fuji-grit-item {
    flex: 1 1 45%; /* Flexible width */
    font-size: 15px;
    line-height: 1.5;
    color: #444;
    padding-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
}
.fuji-grit-code {
    font-weight: 800;
    color: #000;
    margin-right: 10px;
    display: inline-block;
    min-width: 45px;
}

/* --- 3. Safety Box --- */
.fuji-safety-box {
    background-color: #fff5f5;
    border: 1px solid #ffe0e0;
    padding: 30px;
    border-radius: 6px;
    margin-bottom: 30px;
}
.fuji-safety-title {
    font-size: 19px;
    font-weight: 700;
    color: #ba372a;
    margin-bottom: 10px;
}
.fuji-safety-text {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

/* --- Bottom Button --- */
.fuji-bottom-cta {
    text-align: center;
    margin-top: 35px;
}
.fuji-dark-btn {
    display: inline-block;
    background-color: #333;
    color: #fff;
    font-weight: 700;
    padding: 15px 50px;
    border-radius: 4px;
    text-decoration: none;
    text-transform: uppercase;
    transition: background 0.3s;
    font-size: 16px;
}
.fuji-dark-btn:hover {
    background-color: #ba372a;
    color: #fff;
}

/* --- Mobile Responsive --- */
@media (max-width: 768px) {
    .fuji-types-grid { flex-direction: column; gap: 15px; }
    .fuji-grit-item { flex: 1 1 100%; }
    .fuji-guide-title { font-size: 24px; margin-bottom: 25px; }
    .fuji-guide-section { margin: 20px auto; width: 100%; padding: 0 15px;}
}
