.yavin_container {
    width: 100%;
    min-height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #193b4d 0%, #0f2733 100%);
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    position: relative;
}

.yavin_container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    pointer-events: none;
}

.image_container {
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    position: relative;
}

.image_container img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.image_container img:hover {
    transform: scale(1.02);
}

.text_container {
    width: 60%;
    color: white;
    padding: 40px;
    position: relative;
}

.yavin_title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    position: relative;
    padding-bottom: 15px;
}

.yavin_title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: #3498db;
}

.yavin_subtitle {
    font-size: 18px;
    color: #3498db;
    margin-bottom: 25px;
    font-weight: 500;
}

.yavin_description {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.9);
}

.yavin_features {
    list-style: none;
    margin: 25px 0;
    padding: 0;
}

.yavin_features li {
    font-size: 16px;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    color: rgba(255, 255, 255, 0.9);
}

.yavin_features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
}

.cta_button {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.cta_button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #2980b9 0%, #1f6391 100%);
}

.yavin_badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #e74c3c;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    transform: rotate(5deg);
}

@media (max-width: 992px) {
    .yavin_container {
        flex-direction: column;
        min-height: auto;
    }
    
    .image_container, .text_container {
        width: 100%;
    }
    
    .image_container {
        order: -1;
        padding: 30px 30px 0 30px;
    }
    
    .yavin_title {
        font-size: 28px;
    }
    
    .yavin_subtitle {
        font-size: 16px;
    }
}

/* Ajoutez ces styles à votre fichier CSS existant */

.yavin_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.yavin_logo {
    max-width: 150px;
    height: auto;
    margin-bottom: 15px;
}

/* Ajustement du badge pour qu'il s'aligne correctement avec le logo */
.yavin_badge {
    position: relative;
    top: 0;
    right: 0;
    background-color: #e74c3c;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    transform: rotate(5deg);
}

/* Assurez-vous que ces styles sont compatibles avec vos styles existants */
/* Styles pour la section onetouch-solutions */
.onetouch-solutions {
    width:90%;
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 1rem;
    margin-top: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.onetouch-solutions h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-align: center;
    color: #333;
}

.solutions-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
}

.solution-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    padding: 0.8rem 0.8rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background-color: #f0f7ff;
}

.solution-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #e9f5ff;
    margin-bottom: 1rem;
    color: #0066cc;
    font-size: 1.5rem;
}

.solution-name {
    font-size: 0.95rem;
    font-weight: 500;
    color: #333;
    text-align: center;
}

/* Styles responsifs */
@media (max-width: 768px) {
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .onetouch-solutions {
        padding: 1.5rem;
    }
}
/* Styles pour la section de partenariat OneTouch-Yavin */
.onetouch-yavin-partnership {
    width: 100%;
    background: #f8f9fa;
    padding: 60px 20px;
    margin: 50px 0;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.partnership-title {
    font-size: 32px;
    text-align: center;
    color: #333;
    margin-bottom: 15px;
    position: relative;
}

.partnership-title:after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2980b9);
    border-radius: 2px;
}

.partnership-subtitle {
    font-size: 20px;
    text-align: center;
    color: #555;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 20px;
}

.partnership-content {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.partnership-text {
    flex: 1;
    min-width: 300px;
}

.partnership-text h3 {
    font-size: 22px;
    color: #3498db;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.partnership-text h3:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #3498db;
}

.partnership-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 25px;
}

.partnership-cta {
    text-align: center;
    margin-top: 50px;
}

@media (max-width: 768px) {
    .partnership-content {
        flex-direction: column;
    }
    
    .partnership-title {
        font-size: 28px;
    }
    
    .partnership-subtitle {
        font-size: 18px;
    }
}