.eu-property-solution {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.eu-container {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-top: 20px;
}

.eu-top-tabs {
    display: flex;
    flex-wrap: nowrap;
    background-color: #f1f1f1;
    border-bottom: 2px solid #2e057b;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    justify-content: center;
}

.eu-tab-btn {
    flex: 0 0 auto;
    min-width: 150px;
    padding: 15px 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    background: none;
    position: relative;
}

.eu-tab-btn:hover {
    background-color: #e9ecef;
}

.eu-tab-btn.active {
    background-color: #2e057b;
    color: white;
}

.eu-tab-btn i {
    display: block;
    font-size: 24px;
    margin-bottom: 8px;
}

.eu-tab-btn h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.eu-content-area {
    padding: 30px;
    background-color: #2e057b;
    color: white;
}

.eu-tab-content {
    display: none;
}

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

.eu-content-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.eu-content-left {
    flex: 1;
    min-width: 300px;
}

.eu-content-right {
    flex: 1;
    min-width: 300px;
}

.eu-content-right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.eu-content-left h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #fff;
}

.eu-content-left p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.eu-feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.eu-feature-list li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.eu-feature-list li i {
    position: absolute;
    left: 0;
    top: 10px;
    color: #ff4a17;
}

.eu-project-meta {
    margin-bottom: 20px;
}

.meta-item {
    display: inline-block;
    margin-right: 20px;
    margin-bottom: 10px;
    padding: 5px 10px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

.meta-item i {
    margin-right: 5px;
}

.eu-btn-primary {
    display: inline-block;
    padding: 12px 24px;
    background-color: #ff4a17;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.eu-btn-primary:hover {
    background-color: #e03e13;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .eu-top-tabs {
        flex-direction: row;
    }
    
    .eu-tab-btn {
        width: auto;
        text-align: center;
        padding: 15px 10px;
    }
    
    .eu-tab-btn i {
        display: block;
        margin-right: 0;
        margin-bottom: 8px;
    }
    
    .eu-tab-btn h3 {
        display: block;
        font-size: 16px;
    }
    
    .eu-content-left h3 {
        font-size: 16px;
    }
    
    .eu-content-inner {
        flex-direction: column;
    }
    
    .eu-content-left,
    .eu-content-right {
        width: 100%;
    }
}