/* Investissements Page Styles */

.investissement-page {
    color: #333;
}

/* Header Section */
.investissement-header {
    background-color: #1e3752;
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.investissement-title {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 600;
}

.investissement-intro {
    max-width: 800px;
    margin: 0 auto 20px;
    line-height: 1.6;
}

.cta-buttons {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-button-orange {
    display: inline-block;
    background-color: #ff7f00;
    color: #fff;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s;
    text-decoration: none;
}

.cta-button-orange:hover {
    background-color: #e67300;
}

/* Guide Section */
.investissement-guide {
    padding: 60px 0;
    background-color: #fff;
}

.section-title {
    font-size: 24px;
    color: #1e3752;
    text-align: center;
    margin-bottom: 30px;
}

.guide-text {
    margin-bottom: 20px;
    line-height: 1.6;
}

.subsection-title {
    font-size: 20px;
    color: #1e3752;
    margin: 30px 0 15px;
}

/* Cabinet Info Section */
.cabinet-info {
    padding: 60px 0;
    background-color: #f5f5f5;
}

.cabinet-details {
    margin-bottom: 40px;
}

.cabinet-name {
    font-size: 24px;
    color: #1e3752;
    margin-bottom: 5px;
}

.cabinet-address {
    color: #666;
    margin-bottom: 20px;
}

.map-container {
    margin-bottom: 20px;
}

/* Avocat Profile Section */
.avocat-profile-section {
    padding: 0 0 60px;
    background-color: #f5f5f5;
}

.avocat-card {
    display: flex;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.avocat-photo {
    flex: 0 0 40%;
}

.avocat-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avocat-info {
    flex: 1;
    padding: 25px;
}

.avocat-name {
    font-size: 24px;
    color: #1e3752;
    margin-bottom: 5px;
}

.avocat-title {
    color: #666;
    margin-bottom: 15px;
}

.avocat-bio {
    margin-bottom: 20px;
    line-height: 1.6;
}

.add-contact-btn {
    display: inline-block;
    background-color: #1e3752;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    margin-bottom: 20px;
    transition: background-color 0.3s;
    text-decoration: none;
}

.add-contact-btn:hover {
    background-color: #152a3f;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    color: #1e3752;
    transition: background-color 0.3s;
    border-radius: 5px;
    text-decoration: none;
}

.contact-item:hover {
    background-color: #f0f0f0;
}

.contact-item i {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.contact-item span {
    font-size: 0.8rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .avocat-card {
        flex-direction: column;
    }
    
    .avocat-photo {
        flex: 0 0 auto;
    }
    
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}