/* Reset et base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Ubuntu', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

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

/* Header */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.logo h1 {
    font-size: 24px;
    font-weight: 700;
    color: #994a82;
    margin-bottom: 2px;
}

.logo span {
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.header-actions {
    display: flex;
    gap: 15px;
}

.btn-simulate, .btn-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-simulate {
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    color: white;
}

.btn-simulate:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.4);
}

.btn-phone {
    background: #28a9dc;
    color: white;
}

.btn-phone:hover {
    background: #1e8cb8;
    transform: translateY(-2px);
}

/* Navigation */
.navigation {
    padding: 15px 0;
}

.navigation ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.navigation a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.navigation a:hover {
    color: #994a82;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 15px 0;
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 8px 20px;
}

.dropdown-menu a {
    font-weight: 400;
    font-size: 14px;
}

.dropdown-menu a:hover {
    color: #994a82;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #994a82 0%, #4969a1 50%, #28a9dc 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%" r="50%"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.1"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="20%" cy="20%" r="200" fill="url(%23a)"/><circle cx="80%" cy="60%" r="150" fill="url(%23a)"/><circle cx="30%" cy="80%" r="100" fill="url(%23a)"/></svg>');
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
}

.hero-title-line1,
.hero-title-line2,
.hero-title-line3 {
    display: block;
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.95;
    line-height: 1.6;
}

.btn-cta {
    background: #28a9dc;
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-cta:hover {
    background: #1e8cb8;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(40, 169, 220, 0.4);
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: white;
    padding: 15px 20px;
    border-radius: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
}

.chat-widget:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.chat-widget img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.chat-widget span {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

/* Solutions Section */
.solutions {
    padding: 80px 0;
    background: #f8f9fa;
}

.solutions h2 {
    text-align: center;
    font-size: 36px;
    color: #28a9dc;
    margin-bottom: 15px;
    font-weight: 600;
}

.solutions-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
}

.solutions-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
    background: white;
    border-radius: 50px;
    padding: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
}

.tab-btn {
    background: transparent;
    border: none;
    padding: 15px 25px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #666;
    flex: 1;
    text-align: center;
}

.tab-btn.active {
    background: linear-gradient(135deg, #994a82, #4969a1);
    color: white;
    transform: scale(1.02);
}

.tab-btn:hover:not(.active) {
    color: #994a82;
    background: rgba(153, 74, 130, 0.1);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

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

.solution-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

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

.solution-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.solution-card h3 {
    padding: 20px 25px 15px;
    font-size: 20px;
    color: #994a82;
    font-weight: 600;
}

.solution-card p {
    padding: 0 25px 20px;
    color: #666;
    line-height: 1.6;
}

.solution-card a {
    color: #28a9dc;
    text-decoration: none;
}

.solution-card a:hover {
    text-decoration: underline;
}

.btn-solution {
    width: calc(100% - 50px);
    margin: 0 25px 25px;
    background: #28a9dc;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-solution:hover {
    background: #1e8cb8;
    transform: translateY(-2px);
}

/* How it works Section */
.how-it-works {
    background: linear-gradient(135deg, #994a82 0%, #4969a1 50%, #28a9dc 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="b" cx="50%" cy="50%" r="50%"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.1"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="80%" cy="20%" r="200" fill="url(%23b)"/><circle cx="20%" cy="60%" r="150" fill="url(%23b)"/><circle cx="70%" cy="80%" r="100" fill="url(%23b)"/></svg>');
    pointer-events: none;
}

.how-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.how-text h2 {
    font-size: 32px;
    margin-bottom: 25px;
    font-weight: 600;
}

.how-text p {
    font-size: 18px;
    margin-bottom: 25px;
    opacity: 0.95;
}

.how-text ul {
    list-style: none;
}

.how-text li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
}

.how-text li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #28a9dc;
    font-size: 20px;
    font-weight: bold;
}

.how-logo {
    text-align: center;
}

.how-logo img {
    max-width: 200px;
    margin-bottom: 20px;
}

.partenaire-badge {
    background: #e53e3e;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    display: inline-block;
}

.partenaire-badge span {
    display: block;
    font-weight: 600;
    font-size: 14px;
}

.partenaire-badge small {
    display: block;
    font-size: 11px;
    opacity: 0.9;
}

/* Engagement Section */
.engagement {
    padding: 80px 0;
    background: white;
}

.engagement h2 {
    text-align: center;
    font-size: 36px;
    color: #28a9dc;
    margin-bottom: 60px;
    font-weight: 600;
}

.engagement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.engagement-item {
    text-align: center;
    padding: 30px 20px;
}

.engagement-item img {
    width: 80px;
    height: 80px;
    margin-bottom: 25px;
}

.engagement-item h3 {
    font-size: 16px;
    color: #994a82;
    margin-bottom: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.engagement-item p {
    color: #666;
    line-height: 1.6;
}

/* Learn More Section */
.learn-more {
    padding: 80px 0;
    background: #f8f9fa;
}

.learn-more h2 {
    text-align: center;
    font-size: 36px;
    color: #28a9dc;
    margin-bottom: 60px;
    font-weight: 600;
}

.learn-more-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.learn-more-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
}

.learn-more-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.learn-more-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.learn-more-card h3 {
    padding: 25px 25px 15px;
    font-size: 22px;
    color: #994a82;
    font-weight: 600;
}

.learn-more-card p {
    padding: 0 25px 60px;
    color: #666;
    line-height: 1.6;
}

.card-icon {
    position: absolute;
    bottom: 25px;
    right: 25px;
    width: 40px;
    height: 40px;
    background: #28a9dc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.card-icon:hover {
    background: #1e8cb8;
    transform: scale(1.1);
}

.card-icon svg {
    width: 20px;
    height: 20px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #994a82 0%, #4969a1 50%, #28a9dc 100%);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
}

.footer-brand span {
    font-size: 12px;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 20px;
}

.footer-brand p {
    opacity: 0.8;
    margin-bottom: 15px;
}

.footer-partner-logo {
    max-width: 150px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 8px;
}

.footer-column a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 25px;
    text-align: center;
}

.footer-bottom p {
    opacity: 0.7;
    font-size: 14px;
}

.footer-bottom a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: white;
}

/* Contact Widgets */
.contact-widgets {
    position: fixed;
    bottom: 30px;
    left: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.contact-phone, .contact-simulate {
    background: white;
    padding: 15px 20px;
    border-radius: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.contact-phone:hover, .contact-simulate:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.contact-phone a, .contact-simulate a {
    text-decoration: none;
    color: #994a82;
    font-weight: 600;
    font-size: 16px;
}

.contact-phone span {
    display: block;
    font-size: 12px;
    color: #666;
    margin-top: 5px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    /* Amélioration formulaires sur tablette */
    .form-container {
        margin: 0 20px;
        padding: 30px;
    }
}

    .how-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .header {
        padding: 15px 0;
    }

    .header-top {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .logo h1 {
        font-size: 24px;
    }

    .header-actions {
        flex-direction: row;
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
    }
    
    .btn-simulate, .btn-phone {
        padding: 10px 15px;
        font-size: 14px;
        min-width: 120px;
    }

    .navigation ul {
        flex-direction: column;
        gap: 0;
    }

    .navigation li {
        border-bottom: 1px solid #eee;
    }

    .navigation li:last-child {
        border-bottom: none;
    }

    .navigation a {
        padding: 15px;
        display: block;
        font-size: 16px;
    }

    .hero {
        padding: 40px 0;
    }

    .hero-text h1 {
        font-size: 28px;
        line-height: 1.2;
        margin-bottom: 15px;
    }

    .hero-text p {
        font-size: 16px;
        line-height: 1.4;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn-cta {
        width: 100%;
        max-width: 280px;
        text-align: center;
        padding: 15px 25px;
        font-size: 16px;
    }

    .solutions-tabs {
        flex-direction: column;
        gap: 10px;
        padding: 15px;
    }

    .tab-btn {
        padding: 12px 20px;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
    }

    .engagement-grid {
        grid-template-columns: 1fr;
    }

    .learn-more-grid {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .contact-widgets {
        position: static;
        flex-direction: row;
        justify-content: center;
        margin: 20px;
        gap: 10px;
    }

    .chat-widget {
        position: static;
        margin: 10px auto;
        display: inline-flex;
        font-size: 14px;
        padding: 10px 15px;
    }
    
    /* Pages spécifiques mobile */
    .page-hero {
        padding: 50px 0;
    }
    
    .page-hero h1 {
        font-size: 32px;
        line-height: 1.2;
    }
    
    .page-hero p {
        font-size: 16px;
        margin-bottom: 25px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .btn-secondary {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
    
    /* Amélioration des grilles sur mobile */
    .aides-grid,
    .categories-grid,
    .guides-grid,
    .actualites-grid,
    .dispositifs-grid,
    .types-grid,
    .conseils-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Newsletter mobile */
    .newsletter-form {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .newsletter-form input {
        width: 100%;
        max-width: 300px;
        margin-bottom: 10px;
    }
    
    .btn-newsletter {
        width: 100%;
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 40px 0;
    }

    .hero-text h1 {
        font-size: 28px;
    }

    .solutions, .engagement, .learn-more {
        padding: 40px 0;
    }

    .header-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-simulate, .btn-phone {
        justify-content: center;
        width: 100%;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.solution-card, .engagement-item, .learn-more-card {
    animation: fadeInUp 0.6s ease forwards;
}

.solution-card:nth-child(2) {
    animation-delay: 0.1s;
}

.solution-card:nth-child(3) {
    animation-delay: 0.2s;
}

.solution-card:nth-child(4) {
    animation-delay: 0.3s;
}

/* Hover Effects */
.btn-cta, .btn-solution, .btn-simulate, .btn-phone {
    position: relative;
    overflow: hidden;
}

.btn-cta::before, .btn-solution::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-cta:hover::before, .btn-solution:hover::before {
    left: 100%;
}

/* Pages spécifiques */
.page-hero {
    background: linear-gradient(135deg, #994a82 0%, #4969a1 50%, #28a9dc 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.page-hero p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 30px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: white;
    color: #994a82;
    transform: translateY(-2px);
}

.page-content {
    padding: 80px 0;
    background: white;
}

/* Styles spécifiques pages aides */
.aides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.aide-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.aide-card.featured {
    border: 2px solid #28a9dc;
    transform: scale(1.02);
}

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

.aide-card img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 20px;
}

.aide-card h3 {
    color: #994a82;
    font-size: 22px;
    margin-bottom: 15px;
}

.aide-card ul {
    list-style: none;
    margin: 15px 0;
}

.aide-card li {
    padding: 5px 0;
    font-size: 14px;
}

.btn-aide {
    background: #28a9dc;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-aide:hover {
    background: #1e8cb8;
    transform: translateY(-2px);
}

/* Grilles dispositifs et types */
.dispositifs-grid,
.types-grid,
.chauffage-types .types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.dispositif-card,
.type-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.type-card.featured {
    border: 2px solid #28a9dc;
    background: linear-gradient(135deg, rgba(40, 169, 220, 0.05), rgba(153, 74, 130, 0.05));
}

.dispositif-card:hover,
.type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.btn-type {
    background: #994a82;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 15px;
}

.btn-type:hover {
    background: #7d3a69;
    transform: translateY(-2px);
}

/* Sections travaux avec onglets */
.travaux-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.travaux-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.travaux-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #28a9dc;
}

.travaux-item h4 {
    color: #333;
    margin-bottom: 10px;
}

.travaux-item p {
    font-size: 14px;
    color: #666;
}

/* Prix info */
.prix-info {
    background: linear-gradient(135deg, #28a9dc, #1e8cb8);
    color: white;
    padding: 10px 15px;
    border-radius: 25px;
    text-align: center;
    margin: 15px 0;
    font-size: 16px;
}

/* Solutions principales pour pages chauffage */
.solutions-principales .solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

/* Comparatif */
.comparatif-table {
    overflow-x: auto;
    margin: 30px 0;
}

.comparatif-table table {
    width: 100%;
    border-collapse: collapse;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 10px;
    overflow: hidden;
}

.comparatif-table th,
.comparatif-table td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #e1e5e9;
}

.comparatif-table th {
    background: linear-gradient(135deg, #994a82, #4969a1);
    color: white;
    font-weight: 600;
}

.comparatif-table td:first-child {
    text-align: left;
    font-weight: 600;
}

.comparatif-table tr:hover {
    background: rgba(40, 169, 220, 0.05);
}

/* Conseils grid */
.conseils-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.conseil-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    border-top: 4px solid #28a9dc;
}

.conseil-item h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 18px;
}

/* Zone info */
.zone-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.6;
}

/* Styles spécifiques isolation */
.isolation-priorites {
    background: #f8f9fa;
    padding: 80px 0;
}

.priorites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.priorite-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

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

.priorite-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: white;
}

.priorite-1 .priorite-number {
    background: #e53e3e;
}

.priorite-2 .priorite-number {
    background: #ff8c00;
}

.priorite-3 .priorite-number {
    background: #ffa500;
}

.priorite-4 .priorite-number {
    background: #28a9dc;
}

.priorite-card h3 {
    color: #994a82;
    margin: 20px 0 15px;
    font-size: 22px;
}

.btn-priorite {
    background: linear-gradient(135deg, #994a82, #7d3a69);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 15px;
}

.btn-priorite:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(153, 74, 130, 0.4);
}

/* Matériaux tabs */
.materiaux-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.materiaux-tabs .tab-btn {
    background: white;
    border: 2px solid #28a9dc;
    color: #28a9dc;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.materiaux-tabs .tab-btn.active {
    background: #28a9dc;
    color: white;
}

.materiaux-tabs .tab-btn:hover:not(.active) {
    background: rgba(40, 169, 220, 0.1);
}

.materiaux-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.materiau-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-left: 4px solid #28a9dc;
    transition: all 0.3s ease;
}

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

.materiau-card h4 {
    color: #994a82;
    margin-bottom: 15px;
    font-size: 18px;
}

.materiau-card ul {
    list-style: none;
    margin: 15px 0;
}

.materiau-card li {
    padding: 5px 0;
    font-size: 14px;
    position: relative;
    padding-left: 20px;
}

.materiau-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #28a9dc;
    font-weight: bold;
}

/* Solutions isolation */
.solutions-isolation {
    padding: 80px 0;
    background: white;
}

.solutions-isolation .solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

/* Autres styles spécifiques */
.autres-aides {
    background: #f8f9fa;
    padding: 80px 0;
}

.aides-par-travaux {
    padding: 80px 0;
    background: white;
}

/* Styles pages détaillées */
.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.technique-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.technique-card.ite {
    border-left: 4px solid #28a9dc;
}

.technique-card.iti {
    border-left: 4px solid #994a82;
}

.technique-content {
    display: grid;
    gap: 20px;
}

.avantages, .inconvenients {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
}

.avantages h4 {
    color: #28a745;
    margin-bottom: 10px;
}

.inconvenients h4 {
    color: #dc3545;
    margin-bottom: 10px;
}

/* Styles spéciaux tables */
.cout-table,
.dim-table,
.bareme-table,
.comp-table {
    overflow-x: auto;
    margin: 20px 0;
}

.cout-table table,
.dim-table table,
.bareme-table table,
.comp-table table {
    width: 100%;
    border-collapse: collapse;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 10px;
    overflow: hidden;
}

.cout-table th,
.cout-table td,
.dim-table th,
.dim-table td,
.bareme-table th,
.bareme-table td,
.comp-table th,
.comp-table td {
    padding: 12px;
    text-align: center;
    border-bottom: 1px solid #e1e5e9;
}

.cout-table th,
.dim-table th,
.bareme-table th,
.comp-table th {
    background: linear-gradient(135deg, #994a82, #4969a1);
    color: white;
    font-weight: 600;
}

.cout-table td:first-child,
.dim-table td:first-child,
.bareme-table td:first-child,
.comp-table td:first-child {
    text-align: left;
    font-weight: 600;
}

/* Grilles configuration et process */
.config-grid,
.regle-grid,
.tech-grid,
.prog-content,
.install-grid,
.dim-grid,
.entretien-grid,
.conso-grid,
.performance-grid,
.perf-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.config-card,
.regle-item,
.tech-card,
.install-item,
.dim-card,
.entretien-item,
.conso-card,
.perf-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-left: 4px solid #28a9dc;
}

.tech-avantages {
    background: #f8f9fa;
    padding: 10px;
    border-radius: 5px;
    margin-top: 15px;
    font-size: 14px;
}

/* Styles aides état */
.fiscal-grid,
.spec-grid,
.autre-grid,
.dept-header,
.aides-dept-grid,
.communes-grid,
.interco-grid,
.spec-locales-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.fiscal-card,
.spec-card,
.autre-card,
.aide-dept-card,
.commune-card,
.interco-card,
.spec-locale-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-top: 4px solid #28a9dc;
}

.fiscal-details,
.aide-details,
.commune-aides,
.interco-details,
.spec-details {
    margin-top: 15px;
}

.contact-dept,
.contact-commune,
.contact-interco {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
}

.aide-limited {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}

.alternatives {
    background: #d1edff;
    border: 1px solid #74b9ff;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}

/* Styles collectivités */
.intro-collectivites,
.intro-grid,
.beneficier-steps,
.accomp-grid,
.calendrier-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.intro-item,
.calendrier-item,
.accomp-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.dept-info {
    background: linear-gradient(135deg, rgba(40, 169, 220, 0.1), rgba(153, 74, 130, 0.1));
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 30px;
}

/* Styles chauffage alternatif */
.geo-content,
.solaire-content,
.reseau-content,
.regle-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
    margin: 30px 0;
}

.geo-schema,
.prog-image,
.reseau-drome,
.regle-conseil {
    text-align: center;
}

.geo-schema img,
.prog-image img {
    width: 100%;
    border-radius: 10px;
}

.solaire-grid,
.autres-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.solaire-item,
.autre-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left: 4px solid #ffa500;
}

.conseil-box {
    background: linear-gradient(135deg, rgba(40, 169, 220, 0.1), rgba(153, 74, 130, 0.1));
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #28a9dc;
}

/* Responsive amélioré */
@media (max-width: 768px) {
    .comparison-grid {
        grid-template-columns: 1fr;
    }

    .geo-content,
    .solaire-content,
    .reseau-content,
    .regle-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cout-table,
    .dim-table,
    .bareme-table,
    .comp-table {
        font-size: 14px;
    }

    .cout-table th,
    .cout-table td,
    .dim-table th,
    .dim-table td,
    .bareme-table th,
    .bareme-table td,
    .comp-table th,
    .comp-table td {
        padding: 8px;
    }
}

/* Styles guides */
.guides-categories {
    padding: 80px 0;
    background: white;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

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

.category-card.featured {
    border: 2px solid #28a9dc;
    background: linear-gradient(135deg, rgba(40, 169, 220, 0.05), rgba(153, 74, 130, 0.05));
}

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

.category-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.btn-guide {
    background: linear-gradient(135deg, #994a82, #7d3a69);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 20px;
}

.btn-guide:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(153, 74, 130, 0.4);
}

.guides-populaires {
    background: #f8f9fa;
    padding: 80px 0;
}

.guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.guide-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

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

.guide-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.guide-card h3 {
    padding: 20px 25px 10px;
    color: #994a82;
    font-size: 20px;
}

.guide-card p {
    padding: 0 25px 15px;
    color: #666;
    line-height: 1.6;
}

.guide-meta {
    display: flex;
    gap: 15px;
    padding: 0 25px 15px;
    font-size: 14px;
    color: #999;
}

.btn-guide-small {
    background: #28a9dc;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    margin: 0 25px 25px;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-guide-small:hover {
    background: #1e8cb8;
    transform: translateY(-2px);
}

.conseils-experts {
    padding: 80px 0;
    background: white;
}

.conseils-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.conseil-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    border-top: 4px solid #28a9dc;
}

.conseil-icon {
    font-size: 40px;
    margin-bottom: 15px;
    display: block;
}

/* Styles actualités */
.actualites-principales {
    padding: 80px 0;
    background: white;
}

.actualite-featured {
    background: linear-gradient(135deg, rgba(40, 169, 220, 0.1), rgba(153, 74, 130, 0.1));
    border-radius: 20px;
    padding: 40px;
    margin: 40px 0;
}

.featured-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
}

.featured-image img {
    width: 100%;
    border-radius: 15px;
}

.badge-urgent,
.badge-news,
.badge-info,
.badge-conseil,
.badge-ecologie,
.badge-economie,
.badge-pro {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.badge-urgent { background: #e53e3e; color: white; }
.badge-news { background: #28a9dc; color: white; }
.badge-info { background: #4299e1; color: white; }
.badge-conseil { background: #38a169; color: white; }
.badge-ecologie { background: #68d391; color: white; }
.badge-economie { background: #ffa500; color: white; }
.badge-pro { background: #994a82; color: white; }

.article-meta {
    display: flex;
    gap: 20px;
    margin: 15px 0;
    font-size: 14px;
    color: #666;
}

.btn-article {
    background: #28a9dc;
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 20px;
}

.btn-article:hover {
    background: #1e8cb8;
    transform: translateY(-2px);
}

.actualites-grid-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.actualites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.actualite-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

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

.actualite-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-content {
    padding: 25px;
}

.btn-article-small {
    background: #994a82;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 15px;
}

.btn-article-small:hover {
    background: #7d3a69;
    transform: translateY(-2px);
}

/* Newsletter */
.newsletter-section {
    background: linear-gradient(135deg, #994a82 0%, #4969a1 50%, #28a9dc 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin: 30px 0 15px;
    flex-wrap: wrap;
}

.newsletter-form input {
    padding: 12px 20px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    min-width: 300px;
}

.btn-newsletter {
    background: white;
    color: #994a82;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-newsletter:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Veille réglementaire */
.veille-reglementaire {
    padding: 80px 0;
    background: white;
}

.reglementation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.regle-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid #28a9dc;
    position: relative;
}

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

.status-actuel,
.status-evolution,
.status-veille,
.status-preparation {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 4px 8px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.status-actuel { background: #68d391; color: white; }
.status-evolution { background: #ffa500; color: white; }
.status-veille { background: #4299e1; color: white; }
.status-preparation { background: #999; color: white; }

/* Tables pour MaPrimeRénov */
.montants-table {
    overflow-x: auto;
    margin: 20px 0;
}

.montants-table table {
    width: 100%;
    border-collapse: collapse;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 10px;
    overflow: hidden;
}

.montants-table th,
.montants-table td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #e1e5e9;
}

.montants-table th {
    background: linear-gradient(135deg, #994a82, #4969a1);
    color: white;
    font-weight: 600;
}

.montants-table td:first-child {
    text-align: left;
    font-weight: 500;
}

.montants-table tr:hover {
    background: rgba(40, 169, 220, 0.05);
}

/* Cartes catégories MaPrimeRénov */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.category-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-top: 5px solid;
}

.category-card.bleu {
    border-top-color: #007bff;
}

.category-card.jaune {
    border-top-color: #ffc107;
}

.category-card.violet {
    border-top-color: #6f42c1;
}

.category-card.rose {
    border-top-color: #e83e8c;
}

.category-card h3 {
    margin-bottom: 15px;
    font-size: 18px;
}

.revenus-exemples {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin: 15px 0;
}

.revenus-exemples ul {
    margin: 10px 0 0 0;
    padding-left: 20px;
}

.revenus-exemples li {
    font-size: 14px;
    margin: 5px 0;
}

.aide-montant {
    background: linear-gradient(135deg, #28a9dc, #1e8cb8);
    color: white;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    margin-top: 15px;
}

/* Grilles d'avantages et applications */
.advantages-grid,
.applications-grid,
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.advantage-item,
.application-item,
.benefit-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.advantage-item:hover,
.application-item:hover,
.benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.advantage-icon,
.benefit-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.application-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

/* Process steps */
.process-steps,
.demarches-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.step {
    text-align: center;
    padding: 20px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #28a9dc, #1e8cb8);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 18px;
}

.step p {
    color: #666;
    line-height: 1.6;
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin: 20px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
}

.faq-item h3 {
    background: #f8f9fa;
    padding: 20px;
    margin: 0;
    color: #333;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-item h3:hover {
    background: #e9ecef;
}

.faq-item p {
    padding: 20px;
    margin: 0;
    color: #666;
    line-height: 1.6;
}

/* Specs et conditions */
.specs-grid,
.conditions-grid,
.financing-grid,
.problems-grid,
.overview-grid,
.accompagnement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.spec-card,
.condition-item,
.financing-card,
.problem-item,
.overview-item,
.accompagnement-item {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.spec-card:hover,
.condition-item:hover,
.financing-card:hover,
.problem-item:hover,
.overview-item:hover,
.accompagnement-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.financing-card .amount {
    font-size: 24px;
    font-weight: 700;
    color: #28a9dc;
    margin-top: 15px;
}

.problem-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
    text-align: center;
}

/* Solutions types */
.solutions-types {
    padding: 80px 0;
    background: #f8f9fa;
}

.solution-specs {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
    font-size: 14px;
    color: #666;
}

/* CTA sections */
.cta-section {
    background: linear-gradient(135deg, #994a82 0%, #4969a1 50%, #28a9dc 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Navigation active state */
.navigation .active a {
    color: #994a82;
    font-weight: 600;
}
