
/* CPF Page Styles */
.cpf-page {
    background-color: #F7F7F7;
    min-height: 100vh;
}

.cpf-hero {
    background-color: #FF7A00;
    color: white;
    padding: 3rem 0 3rem;
    text-align: center;
}

.cpf-hero h1 {
      font-size: clamp(2.5rem, 5vw, 4rem);
      font-weight: 700;
      margin: 0;
      text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.breadcrumb {
      display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  opacity: 0.9;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb span {
    opacity: 0.7;
}
.cpf-info {
    padding: 4rem 0;
}

.cpf-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.cpf-content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

.cpf-image {
    position: relative;
    padding: 2rem;
}

.main-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
}

.cpf-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: white;
    padding: 0.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.cpf-content {
    padding: 2rem;
}

.financing-badge {
    display: inline-block;
    background-color: rgba(255, 122, 0, 0.1);
    color: #FF7A00;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cpf-content h2 {
    color: #1a1a1a;
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.intro-text {
    color: #4a4a4a;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.cpf-content h3 {
    color: #FF7A00;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.beneficiaries-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.beneficiaries-list li {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: #2a2a2a;
}

.accompagnement-bloc {
    background: rgba(255, 122, 0, 0.05);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
}

.accompagnement-bloc h3 {
    color: #d86600;
    margin-bottom: 1rem;
}

.accompagnement-bloc p {
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

.btn-cpf-primary {
    display: inline-flex;
    align-items: center;
    background-color: #FF7A00;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 122, 0, 0.3);
}

.btn-cpf-primary:hover {
    background-color: #e56900;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 122, 0, 0.4);
}

.cpf-steps {
    padding: 4rem 0;
}

.section-title {
    color: #1a1a1a;
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.step-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.step-header {
    margin-bottom: 1.5rem;
}

.step-number {
    background: linear-gradient(135deg, #FF7A00, #ff9933);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
}

.step-card h3 {
    color: #1a1a1a;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.step-card p {
    color: #4a4a4a;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.checklist {
    margin-top: 1rem;
}

.checklist-item {
    color: #2563eb;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.checklist-item::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
}

/* Responsive Design */
@media (min-width: 768px) {
    .cpf-content-grid {
        grid-template-columns: 1fr 1.2fr;
        align-items: center;
    }
    
    .cpf-image {
        padding: 3rem;
    }
    
    .main-image {
        height: 400px;
    }
    
    .cpf-content {
        padding: 3rem;
    }
    
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .cpf-hero {
        padding: 4rem 0 4rem;
    }
    
    .cpf-info, .cpf-steps {
        padding: 5rem 0;
    }
}