/* Item P content pages (docs/ADDENDUM_item_P_site_ia_restructure.md) --
   shared by car_hire_insurance.html, car_hire_ex_fleet_sales.html,
   airport_transfer_how_it_works.html, accommodation_partners.html.
   Simple, non-animated header (unlike about_us.html's particle hero) --
   these are informational spoke pages, not landing pages. */

.content-page-header {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    padding: 3.5rem 1rem 3rem;
    text-align: center;
    color: #fff;
}

.content-page-header h1 {
    font-size: 2.4rem;
    font-weight: 800;
    margin: 0 0 0.75rem;
}

.content-page-header p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
}

.content-page-body {
    padding: 3rem 0;
}

/* Insurance grid -- migrated from templates/index.html's own inline
   <style> block (the "Insurance Explained Section"), unchanged. */
.insurance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.insurance-card {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.insurance-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.highlight-card {
    background: linear-gradient(135deg, #eaf4fd 0%, #dceefb 100%);
    border: 1px solid #b8d9f5;
}

.insurance-card-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.insurance-card h3 {
    color: #2c3e50;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.insurance-card p {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.insurance-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.insurance-card ul li {
    color: #555;
    font-size: 0.9rem;
    padding: 0.3rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    line-height: 1.5;
}

.insurance-card ul li .fas {
    margin-top: 3px;
    flex-shrink: 0;
}

.insurance-card ul li .fa-check {
    color: #27ae60;
}

/* Transfer advantages grid -- migrated from templates/index.html's own
   inline <style> block ("Transfer Advantages Section"), unchanged. */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.advantage-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: #fff;
    border-radius: 10px;
    padding: 1.25rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.advantage-icon {
    font-size: 1.5rem;
    color: #3498db;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eaf4fd;
    border-radius: 50%;
}

.advantage-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.advantage-content strong {
    color: #2c3e50;
    font-size: 1rem;
}

.advantage-content span {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Simple prose section, used by the two lighter pages (ex-fleet sales,
   accommodation partners). */
.content-prose {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.content-prose p {
    color: #444;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.1rem;
}

/* Long-form article layout -- used by the rebuilt insurance, transfer
   how-it-works, vehicles, and offers pages (12-Aug-2026), whose content
   comes from docs/COPY_*.md and reads as prose with subsections, not a
   card grid. */
.content-article {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.content-article > p:first-child {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.7;
}

.article-section {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid #e9ecef;
}

.article-section:first-of-type {
    border-top: none;
    margin-top: 1.5rem;
    padding-top: 0;
}

.article-section h2 {
    color: #2c3e50;
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.9rem;
}

.article-section p {
    color: #444;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.article-section ul {
    color: #444;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0 0 1rem;
    padding-left: 1.4rem;
}

.article-section li {
    margin-bottom: 0.4rem;
}

.article-section ol {
    color: #444;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0 0 1rem;
    padding-left: 1.4rem;
}

.article-section ol li {
    margin-bottom: 0.6rem;
}

.article-callout {
    background: #f0f7ff;
    border-left: 3px solid #3498db;
    padding: 1rem 1.25rem;
    border-radius: 0 8px 8px 0;
    margin-bottom: 1.25rem;
    color: #2c3e50;
    font-size: 1rem;
    line-height: 1.6;
}

.article-nav-jump {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1.5rem 0 2.5rem;
    padding: 1rem 1.25rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.article-nav-jump a {
    font-size: 0.85rem;
    color: #3498db;
    text-decoration: none;
    padding: 0.3rem 0.7rem;
    border: 1px solid #d6e9fb;
    border-radius: 20px;
    background: #fff;
}

.article-nav-jump a:hover {
    background: #eaf4fd;
}

.article-note {
    font-size: 0.9rem;
    color: #7d4a00;
    background: rgba(230, 126, 34, 0.1);
    padding: 0.75rem 1rem;
    border-radius: 6px;
    margin-bottom: 1rem;
}

.vehicle-category-card {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.25rem;
}

.vehicle-category-card h3 {
    color: #2c3e50;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .content-page-header {
        padding: 2.5rem 1rem 2rem;
    }
    .content-page-header h1 {
        font-size: 1.9rem;
    }
    .insurance-grid,
    .advantages-grid {
        grid-template-columns: 1fr;
    }
}
